From d6c342a80586ea28c3748dbbb9edeab317c327aa Mon Sep 17 00:00:00 2001 From: Christopher Zins Date: Sun, 31 May 2015 19:44:18 -0500 Subject: [PATCH] Renamed background color 'none' to 'default' --- cava.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cava.c b/cava.c index fc773c3..2f6f114 100644 --- a/cava.c +++ b/cava.c @@ -393,7 +393,7 @@ Options:\n\ if (strcmp(color, "magenta") == 0) bgcol = 5; if (strcmp(color, "cyan") == 0) bgcol = 6; if (strcmp(color, "white") == 0) bgcol = 7; - if (strcmp(color, "none") == 0) bgcol = -1; + if (strcmp(color, "default") == 0) bgcol = -1; if (bgcol == -2) { fprintf(stderr, "color %s not supported\n", color); exit(EXIT_FAILURE);