]> git.sur5r.net Git - i3/i3/commitdiff
Improve error message for clarity.
authorMichael Stapelberg <michael@stapelberg.de>
Mon, 27 Jul 2015 20:29:44 +0000 (22:29 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 27 Jul 2015 20:32:55 +0000 (22:32 +0200)
src/config_parser.c

index 3fd4e09a306de9efdcc78915f6b566500492b7ea..9a0d19254db4d2c7d349054bdf351c8a96d24b11 100644 (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) {