mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 06:31:47 +00:00
parent
2f0abce691
commit
94657a2a2a
1 changed files with 2 additions and 2 deletions
|
@ -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 );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue