commit | 8250fbeac6c7c07e6fe03f7b51fe946e44729548 | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Sun Jan 27 17:12:15 2008 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Sun Jan 27 17:12:15 2008 +0000 |
tree | 18a919d86bed2026bdf048722a001755a10cde2b | |
parent | 183c5346fef1d61badd9ce0b1c08a014d2bff874 [diff] |
Reduce buffer size since we do not need 1k
diff --git a/Python/ceval.c b/Python/ceval.c index 3e0ff76..db9ce7d 100644 --- a/Python/ceval.c +++ b/Python/ceval.c
@@ -2492,7 +2492,7 @@ else { /* This check is expensive! */ if (PyErr_Occurred()) { - char buf[1024]; + char buf[128]; sprintf(buf, "Stack unwind with exception " "set and why=%d", why); Py_FatalError(buf);