From a4af49678a510b0bed58cee5c5113675344ba771 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Sat, 13 Jul 2024 19:50:47 -0400 Subject: listbas: fix signed vs. unsigned brain-damage in color_on(). --- listbas.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/listbas.c b/listbas.c index 26d03a1..dcd303b 100644 --- a/listbas.c +++ b/listbas.c @@ -239,7 +239,7 @@ double bcd2double(const unsigned char *num) { return result; } -void color_on(unsigned char c) { +void color_on(int c) { cur_color = c; if(c != NO_COLOR) printf(COLOR_FMT, bold, c); -- cgit v1.2.3