[quake3-commits] r1600 - trunk/code/tools/asm

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Mon Sep 14 19:51:35 EDT 2009


Author: icculus
Date: 2009-09-14 19:51:35 -0400 (Mon, 14 Sep 2009)
New Revision: 1600

Modified:
   trunk/code/tools/asm/q3asm.c
Log:
Make q3asm's CodeError print to stderr.

  Fixes Bugzilla #3845.


Modified: trunk/code/tools/asm/q3asm.c
===================================================================
--- trunk/code/tools/asm/q3asm.c	2009-09-14 23:49:20 UTC (rev 1599)
+++ trunk/code/tools/asm/q3asm.c	2009-09-14 23:51:35 UTC (rev 1600)
@@ -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 );
 }
 



More information about the quake3-commits mailing list