Improve error message for clarity.

next
Michael Stapelberg 2015-07-27 22:29:44 +02:00
parent 691d6714fc
commit 86cc7d9a21
1 changed files with 1 additions and 1 deletions

View File

@ -863,7 +863,7 @@ bool parse_file(const char *f, bool use_nagbar) {
die("Could not read configuration file\n");
}
if (buffer[strlen(buffer) - 1] != '\n') {
ELOG("Use continuation with too many lines\n");
ELOG("Your line continuation is too long, it exceeds %zd bytes\n", sizeof(buffer));
}
continuation = strstr(buffer, "\\\n");
if (continuation) {