summaryrefslogtreecommitdiff
path: root/gcc/cpperror.c
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-02-16 01:59:54 -0800
committerYamaArashi <shadow962@live.com>2016-02-16 01:59:54 -0800
commit75ff61fd74b379f7278b1042e269ea3a6ee66518 (patch)
treee7476ce3b6211abd2ed93d60c544e047abb24ec4 /gcc/cpperror.c
parentbbe0e72828710bb413ce01e22173adcc761ec7f8 (diff)
get rid of VA_START macro
Diffstat (limited to 'gcc/cpperror.c')
-rwxr-xr-xgcc/cpperror.c4
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);