aboutsummaryrefslogtreecommitdiffstats
path: root/src/output
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2015-01-21 22:19:36 +0100
committerMax Kellermann <max@duempel.org>2015-01-21 22:19:36 +0100
commita38f02541d82ce27666e27bf7e3123bff621ca70 (patch)
tree1180a760127795137085a9c332b50bd997deb5a6 /src/output
parentfdba76ba47920a5dc1cc23f0be3131e4b85a041a (diff)
downloadmpd-a38f02541d82ce27666e27bf7e3123bff621ca70.tar.gz
mpd-a38f02541d82ce27666e27bf7e3123bff621ca70.tar.xz
mpd-a38f02541d82ce27666e27bf7e3123bff621ca70.zip
config/Param: make "line" signed
Diffstat (limited to '')
-rw-r--r--src/output/plugins/ShoutOutputPlugin.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output/plugins/ShoutOutputPlugin.cxx b/src/output/plugins/ShoutOutputPlugin.cxx
index f9070026e..9157afd37 100644
--- a/src/output/plugins/ShoutOutputPlugin.cxx
+++ b/src/output/plugins/ShoutOutputPlugin.cxx
@@ -97,7 +97,7 @@ require_block_string(const config_param &param, const char *name)
const char *value = param.GetBlockValue(name);
if (value == nullptr)
FormatFatalError("no \"%s\" defined for shout device defined "
- "at line %u\n", name, param.line);
+ "at line %d\n", name, param.line);
return value;
}