diff options
-rw-r--r-- | gcc/builtins.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/builtins.c b/gcc/builtins.c index 15f4bcbf719..7cc917a7a1f 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -3709,7 +3709,7 @@ validate_arglist VPARAMS ((tree arglist, ...)) /* This signifies an endlink, if no arguments remain, return true, otherwise return false. */ va_end (ap); - return (arglist == 0); + return arglist == 0; default: /* If no parameters remain or the parameter's code does not match the specified code, return false. Otherwise continue |