]> git.sur5r.net Git - i3/i3status/blobdiff - src/general.c
Breaks configfiles! Major refactoring of i3status, see below
[i3/i3status] / src / general.c
index 8d48f749ddbb9f6232dca6f9e4d7436a7be65b70..a093c160d73eb874645f5a1702eda143f6859cea 100644 (file)
@@ -53,21 +53,6 @@ void die(const char *fmt, ...) {
         (void)vsnprintf(buffer, sizeof(buffer), fmt, ap);
         va_end(ap);
 
-        if (wmii_path != NULL)
-                write_error_to_statusbar(buffer);
-        else
-                fprintf(stderr, "%s", buffer);
+        fprintf(stderr, "%s", buffer);
         exit(EXIT_FAILURE);
 }
-
-/*
- * This function just concats two strings in place, it should only be used
- * for concatting order to the name of a file or concatting color codes.
- * Otherwise, the buffer size would have to be increased.
- *
- */
-char *order_to_str(int number, char *name) {
-        static char buf[32];
-        (void)snprintf(buf, sizeof(buf), "%d%s", number, name);
-        return buf;
-}