Minor change

This commit is contained in:
Devine Lu Linvega 2024-04-08 15:08:22 -07:00
parent 418bf81c5a
commit bdb19d5ea5
1 changed files with 1 additions and 2 deletions

View File

@ -26,8 +26,7 @@ walk(char *s)
if(!depth) return s; if(!depth) return s;
} }
} }
while((c = *s) && !spacer(c) && *s++) while((c = *s) && !spacer(c)) s++;
;
return s; return s;
} }