summaryrefslogtreecommitdiff
path: root/src/config
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2015-12-16 11:13:09 +0100
committerMax Kellermann <max@duempel.org>2015-12-16 11:13:16 +0100
commitc4a0571e7af08c7ff2f31c0e29d6c76c12b4f789 (patch)
tree61d2bfd7656743a6bbd0d0824785f225822a7d0f /src/config
parente4a06da14e1184eacd00834aaf05c5457703a7eb (diff)
config/ConfigFile: fix typo in format string
Diffstat (limited to 'src/config')
-rw-r--r--src/config/ConfigFile.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/ConfigFile.cxx b/src/config/ConfigFile.cxx
index b6164b8bc..cd4fe9160 100644
--- a/src/config/ConfigFile.cxx
+++ b/src/config/ConfigFile.cxx
@@ -106,7 +106,7 @@ config_read_block(BufferedReader &reader, Error &error)
if (*line != 0 && *line != CONF_COMMENT) {
delete ret;
error.Format(config_file_domain,
- "line %y: Unknown tokens after '}'",
+ "line %u: Unknown tokens after '}'",
reader.GetLineNumber());
return nullptr;
}