diff options
author | Max Kellermann <max@duempel.org> | 2014-12-12 09:54:30 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-12-12 13:20:37 +0100 |
commit | 1affc641c452baa42efb8a0611c71a1b8b3fbdf3 (patch) | |
tree | 50d5bd549cb173f7195aa1e5918a2f488e0cfe19 /src/input/Init.cxx | |
parent | 0cfd4fff62be0e2fd16041347ba7dfa7b84fec11 (diff) | |
download | mpd-1affc641c452baa42efb8a0611c71a1b8b3fbdf3.tar.gz mpd-1affc641c452baa42efb8a0611c71a1b8b3fbdf3.tar.xz mpd-1affc641c452baa42efb8a0611c71a1b8b3fbdf3.zip |
input/Init: eliminate double colon from log message
Diffstat (limited to '')
-rw-r--r-- | src/input/Init.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/Init.cxx b/src/input/Init.cxx index 5e64dcaed..0ee87c4d8 100644 --- a/src/input/Init.cxx +++ b/src/input/Init.cxx @@ -67,7 +67,7 @@ input_stream_global_init(Error &error) case InputPlugin::InitResult::UNAVAILABLE: if (error.IsDefined()) { FormatError(error, - "Input plugin '%s' is unavailable: ", + "Input plugin '%s' is unavailable", plugin->name); error.Clear(); } |