diff options
author | Mike Stump <mrs@gcc.gnu.org> | 2006-05-18 22:16:23 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2006-05-18 22:16:23 +0000 |
commit | c22cacf346343c87823813e73734aa7d728553c6 (patch) | |
tree | 3ae25fdc8c96c858e654f50a244ec03375560ecb /gcc/c-errors.c | |
parent | e836620206f1e96d7dac7c3b91c00e01b39e39f3 (diff) | |
download | gcc-c22cacf346343c87823813e73734aa7d728553c6.zip gcc-c22cacf346343c87823813e73734aa7d728553c6.tar.gz gcc-c22cacf346343c87823813e73734aa7d728553c6.tar.bz2 |
Whitespace fixups
From-SVN: r113893
Diffstat (limited to 'gcc/c-errors.c')
-rw-r--r-- | gcc/c-errors.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/c-errors.c b/gcc/c-errors.c index 274e9df..7654239 100644 --- a/gcc/c-errors.c +++ b/gcc/c-errors.c @@ -36,10 +36,10 @@ pedwarn_c99 (const char *gmsgid, ...) { diagnostic_info diagnostic; va_list ap; - + va_start (ap, gmsgid); diagnostic_set_info (&diagnostic, gmsgid, &ap, input_location, - flag_isoc99 ? pedantic_error_kind () : DK_WARNING); + flag_isoc99 ? pedantic_error_kind () : DK_WARNING); report_diagnostic (&diagnostic); va_end (ap); } @@ -57,7 +57,7 @@ pedwarn_c90 (const char *gmsgid, ...) va_start (ap, gmsgid); diagnostic_set_info (&diagnostic, gmsgid, &ap, input_location, - flag_isoc99 ? DK_WARNING : pedantic_error_kind ()); + flag_isoc99 ? DK_WARNING : pedantic_error_kind ()); report_diagnostic (&diagnostic); va_end (ap); } |