Minor, properly substituted removed define.

This commit is contained in:
2017-03-18 20:25:24 -07:00
parent fdc0b3f67a
commit 3afe9390cc

View File

@ -139,7 +139,7 @@ static void b(char * const str) {
while (token) { while (token) {
c = token[0]; c = token[0];
if (isdigit(c)) { if (isdigit(c)) {
decspan(c - ASCII_ZERO); decspan(c - '0');
if (strlen(token) > 1) { if (strlen(token) > 1) {
printf("%s", token + 1); printf("%s", token + 1);
} }