aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/lash_unused.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/lash_unused.c b/shell/lash_unused.c
index 2574987c5..f71daf236 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)++;
}