summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/expr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expr.c b/src/expr.c
index a6f54774e..46016ca00 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -358,14 +358,14 @@ toarith (VALUE *v)
}
}
-/* Return nonzero and advance if the next token matches STR exactly.
+/* Return true and advance if the next token matches STR exactly.
STR must not be NULL. */
static bool
nextarg (char const *str)
{
if (*args == NULL)
- return 0;
+ return false;
else
{
bool r = STREQ (*args, str);