From 3afe9390ccbd6da38529c2f89607beb75d21b0f5 Mon Sep 17 00:00:00 2001 From: <> Date: Sat, 18 Mar 2017 20:25:24 -0700 Subject: [PATCH] Minor, properly substituted removed define. --- includes/colors.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/colors.c b/includes/colors.c index 519c5e2..1a26603 100644 --- a/includes/colors.c +++ b/includes/colors.c @@ -139,7 +139,7 @@ static void b(char * const str) { while (token) { c = token[0]; if (isdigit(c)) { - decspan(c - ASCII_ZERO); + decspan(c - '0'); if (strlen(token) > 1) { printf("%s", token + 1); }