Skip to content

Commit

Permalink
From patchwork series 420890
Browse files Browse the repository at this point in the history
  • Loading branch information
Fox Snowpatch committed Aug 26, 2024
1 parent ddf9a4c commit a7d81d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/powerpc/xmon/xmon.c
Original file line number Diff line number Diff line change
Expand Up @@ -3543,7 +3543,7 @@ scanhex(unsigned long *vp)
}
} else if (c == '$') {
int i;
for (i=0; i<63; i++) {
for (i = 0; i < (KSYM_NAME_LEN - 1); i++) {
c = inchar();
if (isspace(c) || c == '\0') {
termch = c;
Expand Down

0 comments on commit a7d81d7

Please sign in to comment.