summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-03-10 22:43:12 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-03-10 22:43:12 (GMT)
commitb4a92376f86f1a4fefac22230864d9e11f8e405f (patch)
tree8dd3ba6bf669605f9c842d6da451387627d0678a
parent4c7c3c58be26e60dfe826da63bd4cac513cfdf83 (diff)
downloadcpython-b4a92376f86f1a4fefac22230864d9e11f8e405f.zip
cpython-b4a92376f86f1a4fefac22230864d9e11f8e405f.tar.gz
cpython-b4a92376f86f1a4fefac22230864d9e11f8e405f.tar.bz2
Fix regression after c8d1df9ac987
(PPC buildbot)
-rw-r--r--Include/genobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/genobject.h b/Include/genobject.h
index e7a1c01..2326491 100644
--- a/Include/genobject.h
+++ b/Include/genobject.h
@@ -18,7 +18,7 @@ typedef struct {
struct _frame *gi_frame;
/* True if generator is being executed. */
- int gi_running;
+ char gi_running;
/* The code object backing the generator */
PyObject *gi_code;