Commit 281945aa authored by Ryan C. Gordon's avatar Ryan C. Gordon

Whoops, that should be vfprintf(), not fprintf(). :)

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%404420
parent 7ab66084
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment