Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Whoops, that should be vfprintf(), not fprintf(). :)
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jan 13, 2010
1 parent a7cf36a commit febea1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SDL_assert.c
Expand Up @@ -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
Expand Down

0 comments on commit febea1a

Please sign in to comment.