diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/lash_unused.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/lash_unused.c b/shell/lash_unused.c index 2574987..f71daf2 100644 --- a/shell/lash_unused.c +++ b/shell/lash_unused.c @@ -697,7 +697,7 @@ static char * strsep_space(char *string, int * ix) /* Find the end of any whitespace trailing behind * the token and let that be part of the token */ - while (string[*ix] && (isspace)(string[*ix]) ) { + while (string[*ix] && isspace(string[*ix])) { (*ix)++; } |