2014-09-03
2014-09-03 13:55:01 by Martin Nilsson <nilsson@opera.com>
-
6a1ed052f6434d1c7f3e2bc2956fc59a08b05de9
(7 lines)
(+4/-3)
[
Show
| Annotate
]
Branch: 8.0
Building without vfprintf has not worked since 2003.
480:
/* Prevent double fatal. */
if (in_fatal)
{
- if (fmt) (void)VFPRINTF(stderr, fmt, args);
+ if (fmt) (void)vfprintf(stderr, fmt, args);
do_abort();
}
491: Inside #if defined(PIKE_DEBUG) and #if defined(HAVE_VA_COPY)
if (fmt) {
va_list a;
va_copy (a, args);
- (void)VFPRINTF(stderr, fmt, a);
+ (void)vfprintf(stderr, fmt, a);
va_end (a);
}
#endif
499:
}
#endif
- if (fmt) (void)VFPRINTF(stderr, fmt, args);
+ if (fmt) (void)vfprintf(stderr, fmt, args);
if(Pike_in_gc)
fprintf(stderr,"Pike was in GC stage %d when this fatal occurred.\n",Pike_in_gc);