config/ConfigFile: fix typo in format string

This commit is contained in:
Max Kellermann 2015-12-16 11:13:09 +01:00
parent e4a06da14e
commit c4a0571e7a

View File

@ -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;
}