From: ian Date: Fri, 5 Jan 2007 06:16:56 +0000 (+0000) Subject: * c-common.c (check_function_nonnull): Whitespace fix. X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e4603171cb0c654d169178e65e960ba38179ca47;p=thirdparty%2Fgcc.git * c-common.c (check_function_nonnull): Whitespace fix. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@120470 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fb01be3f6f58..5bcf02a4defa 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2007-01-04 Ian Lance Taylor + + * c-common.c (check_function_nonnull): Whitespace fix. + 2007-01-04 Jan Hubicka * tree-optimize.c (execute_fixup_cfg): Correct previously mistakely diff --git a/gcc/c-common.c b/gcc/c-common.c index cca1490a9d53..2fd2a81b924e 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -5587,11 +5587,11 @@ check_function_nonnull (tree attrs, tree params) param_num++, param = TREE_CHAIN (param)) { if (!param) - break; + break; if (!args || nonnull_check_p (args, param_num)) - check_function_arguments_recurse (check_nonnull_arg, NULL, - TREE_VALUE (param), - param_num); + check_function_arguments_recurse (check_nonnull_arg, NULL, + TREE_VALUE (param), + param_num); } } }