fix reactos_support_code MSVC build.

svn path=/trunk/; revision=73690
This commit is contained in:
Sylvain Petreolle 2017-02-05 01:03:45 +00:00
parent 996dfea0be
commit 3cd888817c

View file

@ -3,10 +3,9 @@
void
isohybrid_error(int eval, const char* fmt, ...)
{
fprintf(stderr, "isohybrid: ");
va_list ap;
va_start(ap, fmt);
fprintf(stderr, "isohybrid: ");
vfprintf(stderr, fmt, ap);
va_end(ap);
exit(eval);
@ -15,10 +14,9 @@ isohybrid_error(int eval, const char* fmt, ...)
void
isohybrid_warning(const char *fmt, ...)
{
fprintf(stderr, "isohybrid: ");
va_list ap;
va_start(ap, fmt);
fprintf(stderr, "isohybrid: ");
vfprintf(stderr, fmt, ap);
va_end(ap);
}