diff options
Diffstat (limited to 'gcc/cpperror.c')
-rwxr-xr-x | gcc/cpperror.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cpperror.c b/gcc/cpperror.c index 1d95086..7a82656 100755 --- a/gcc/cpperror.c +++ b/gcc/cpperror.c @@ -113,7 +113,7 @@ cpp_message (cpp_reader *pfile, int is_error, const char *msg, ...) { va_list ap; - VA_START (ap, msg); + va_start (ap, msg); v_cpp_message(pfile, is_error, msg, ap); @@ -131,7 +131,7 @@ cpp_fatal (cpp_reader *pfile, const char *str, ...) { va_list ap; - VA_START (ap, str); + va_start (ap, str); fprintf (stderr, "%s: ", progname); |