diff options
Diffstat (limited to 'gcc/fix-header.c')
-rw-r--r-- | gcc/fix-header.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/fix-header.c b/gcc/fix-header.c index c2e31f6..380fe86 100644 --- a/gcc/fix-header.c +++ b/gcc/fix-header.c @@ -1323,12 +1323,12 @@ fatal VPARAMS ((const char *str, ...)) #endif va_list ap; - VA_START(ap, str); + VA_START (ap, str); #ifndef ANSI_PROTOTYPES str = va_arg (ap, const char *); #endif - v_fatal(str, ap); - va_end(ap); + v_fatal (str, ap); + va_end (ap); } |