summaryrefslogtreecommitdiff
path: root/Include/genobject.h
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-03-10 23:43:12 +0100
committerAntoine Pitrou <solipsis@pitrou.net>2012-03-10 23:43:12 +0100
commit0872c7be8541e059241d0bbe89a442a8c4b90215 (patch)
treeacabe46a4f95da2dd0ee434e23acacd80ebd3db9 /Include/genobject.h
parent78f33b5aa81347260eae13b9c500bad921c025e6 (diff)
downloadcpython-0872c7be8541e059241d0bbe89a442a8c4b90215.tar.gz
Fix regression after c8d1df9ac987
(PPC buildbot)
Diffstat (limited to 'Include/genobject.h')
-rw-r--r--Include/genobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/genobject.h b/Include/genobject.h
index e7a1c01d3d..23264918f0 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;