Make q3asm's CodeError print to stderr.

Fixes Bugzilla #3845.
This commit is contained in:
Ryan C. Gordon 2009-09-14 23:51:35 +00:00
parent 2f0abce691
commit 94657a2a2a
1 changed files with 2 additions and 2 deletions

View File

@ -489,10 +489,10 @@ static void CodeError( char *fmt, ... ) {
errorCount++; errorCount++;
report( "%s:%i ", currentFileName, currentFileLine ); fprintf( stderr, "%s:%i ", currentFileName, currentFileLine );
va_start( argptr,fmt ); va_start( argptr,fmt );
vprintf( fmt,argptr ); vfprintf( stderr, fmt, argptr );
va_end( argptr ); va_end( argptr );
} }