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
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);
}