summaryrefslogtreecommitdiff
path: root/gcc/genemit.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/genemit.c
parentbbe0e72828710bb413ce01e22173adcc761ec7f8 (diff)
get rid of VA_START macro
Diffstat (limited to 'gcc/genemit.c')
-rwxr-xr-xgcc/genemit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/genemit.c b/gcc/genemit.c
index 752a537..0a4e925 100755
--- a/gcc/genemit.c
+++ b/gcc/genemit.c
@@ -710,7 +710,7 @@ fatal (const char *format, ...)
{
va_list ap;
- VA_START (ap, format);
+ va_start (ap, format);
fprintf (stderr, "genemit: ");