diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-30 18:16:16 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-30 18:16:16 +0000 |
commit | b2a7f179bd16e23dc252e1a120264a5b503b14b7 (patch) | |
tree | 615c3785d21cdc40dd763cf8ccfc8ec1815854e1 /gcc/builtins.c | |
parent | 0eb671f7ab9cfccd9b84d81aa39605812ec855d1 (diff) | |
download | gcc-b2a7f179bd16e23dc252e1a120264a5b503b14b7.tar.gz |
Oops, fix style nit.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38567 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/builtins.c')
-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 |