]> git.sur5r.net Git - i3/i3/commitdiff
Improve error message when a full_text property is missing
authorIngo Bürk <ingo.buerk@tngtech.com>
Wed, 3 Dec 2014 19:11:05 +0000 (20:11 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 7 Dec 2014 18:56:51 +0000 (19:56 +0100)
i3bar/src/child.c

index 4b09daa9884fdf64efacd1ba678810998ce6b7fd..8d5e999ebf12b2de47294fde89dd4fef9c84563e 100644 (file)
@@ -233,7 +233,7 @@ static int stdin_end_map(void *context) {
     /* Ensure we have a full_text set, so that when it is missing (or null),
      * i3bar doesn’t crash and the user gets an annoying message. */
     if (!new_block->full_text)
-        new_block->full_text = i3string_from_utf8("SPEC VIOLATION (null)");
+        new_block->full_text = i3string_from_utf8("SPEC VIOLATION: full_text is NULL!");
     if (new_block->urgent)
         ctx->has_urgent = true;
     TAILQ_INSERT_TAIL(&statusline_head, new_block, blocks);