Index: code/tools/asm/q3asm.c =================================================================== --- code/tools/asm/q3asm.c (revision 1474) +++ code/tools/asm/q3asm.c (working copy) @@ -489,10 +489,10 @@ 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 ); }