]> git.sur5r.net Git - i3/i3/commitdiff
Properly error out when the layout file cannot be read.
authorIngo Bürk <ingo.buerk@tngtech.com>
Wed, 4 Mar 2015 21:45:39 +0000 (22:45 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Sat, 7 Mar 2015 14:57:05 +0000 (15:57 +0100)
This will result in an actual error message for the user.
fixes #1499

src/commands.c

index 0a64b2b82b7f0310d8327dd4cc83d5f4f5383828..92203e3925ba7ab730d510537238abc84941df4e 100644 (file)
@@ -909,7 +909,7 @@ void cmd_append_layout(I3_CMD, char *path) {
     LOG("JSON content = %d\n", content);
     if (content == JSON_CONTENT_UNKNOWN) {
         ELOG("Could not determine the contents of \"%s\", not loading.\n", path);
-        ysuccess(false);
+        yerror("Could not determine the contents of \"%s\".", path);
         free(path);
         return;
     }