mirror of
https://github.com/yawut/SDL.git
synced 2026-08-22 00:35:18 -05:00
Whoops, that should be vfprintf(), not fprintf(). :)
This commit is contained in:
@@ -85,7 +85,7 @@ debug_print(const char *fmt, ...)
|
||||
/* Unix has it easy. Just dump it to stderr. */
|
||||
va_list ap;
|
||||
va_start(ap, fmt);
|
||||
fprintf(stderr, fmt, ap);
|
||||
vfprintf(stderr, fmt, ap);
|
||||
va_end(ap);
|
||||
fflush(stderr);
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user