Commit 9547b4d7 authored by Guido van Rossum's avatar Guido van Rossum

Undo a silly effect of a global substitution: the macintosh panic()

function had a reference to vPySys_WriteStderr(...) -- turn it back
into fprintf(stder, ...).
parent 0c6f8d11
...@@ -2071,7 +2071,7 @@ panic(char * format, ...) ...@@ -2071,7 +2071,7 @@ panic(char * format, ...)
va_start(varg, format); va_start(varg, format);
vPySys_WriteStderr(format, varg); vfprintf(stderr, format, varg);
(void) fflush(stderr); (void) fflush(stderr);
va_end(varg); va_end(varg);
......
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