diff options
-rw-r--r-- | code/tools/asm/q3asm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/code/tools/asm/q3asm.c b/code/tools/asm/q3asm.c index fdf7afc..c740c7f 100644 --- a/code/tools/asm/q3asm.c +++ b/code/tools/asm/q3asm.c @@ -489,10 +489,10 @@ static void CodeError( char *fmt, ... ) { errorCount++; - report( "%s:%i ", currentFileName, currentFileLine ); + fprintf( stderr, "%s:%i ", currentFileName, currentFileLine ); va_start( argptr,fmt ); - vprintf( fmt,argptr ); + vfprintf( stderr, fmt, argptr ); va_end( argptr ); } |