From: Robert Pengelly Date: Fri, 21 Mar 2025 07:06:04 +0000 (+0000) Subject: Change a missed 0x20 to ' ' X-Git-Url: https://git.candlhat.org/?a=commitdiff_plain;h=9fe978b4a6cce6b91a56f2ab4cddd7f8323225fd;p=sar.git Change a missed 0x20 to ' ' --- diff --git a/display.c b/display.c index c25fd05..17cf3ae 100644 --- a/display.c +++ b/display.c @@ -44,7 +44,7 @@ void display (FILE *arfp) { for (i = 16; i >= 0; --i) { - if (temp[i] == 0x20) { + if (temp[i] == ' ') { temp[i] = '\0'; }