Add missing blanks

From-SVN: r39431
This commit is contained in:
Richard Kenner 2001-02-03 08:33:14 -05:00
parent ae9dc93157
commit a315b9553d

View File

@ -1323,12 +1323,12 @@ fatal VPARAMS ((const char *str, ...))
#endif #endif
va_list ap; va_list ap;
VA_START(ap, str); VA_START (ap, str);
#ifndef ANSI_PROTOTYPES #ifndef ANSI_PROTOTYPES
str = va_arg (ap, const char *); str = va_arg (ap, const char *);
#endif #endif
v_fatal(str, ap); v_fatal (str, ap);
va_end(ap); va_end (ap);
} }