projects
/
sar.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d963d0f
)
Change a missed 0x20 to ' '
master
author
Robert Pengelly
<robertapengelly@hotmail.com>
Fri, 21 Mar 2025 07:06:04 +0000
(07:06 +0000)
committer
Robert Pengelly
<robertapengelly@hotmail.com>
Fri, 21 Mar 2025 07:06:04 +0000
(07:06 +0000)
display.c
patch
|
blob
|
history
diff --git
a/display.c
b/display.c
index c25fd0530406a2060db9ee2d546677a7dc1fbdc0..17cf3ae3049a5ada1227c108ede851bb13e128d7 100644
(file)
--- 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';
}