summaryrefslogtreecommitdiff
path: root/src/parse-gram.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse-gram.c')
-rw-r--r--src/parse-gram.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parse-gram.c b/src/parse-gram.c
index b6ac083e..97fbb925 100644
--- a/src/parse-gram.c
+++ b/src/parse-gram.c
@@ -2945,11 +2945,11 @@ add_param (param_type type, char *decl, location loc)
/* Strip the surrounding '{' and '}', and any blanks just inside
the braces. */
--p;
- while (c_isspace ((unsigned char) *p))
+ while (c_isspace (*p))
--p;
p[1] = '\0';
++decl;
- while (c_isspace ((unsigned char) *decl))
+ while (c_isspace (*decl))
++decl;
}