]> granicus.if.org Git - python/commitdiff
Fix regression after c8d1df9ac987
authorAntoine Pitrou <solipsis@pitrou.net>
Sat, 10 Mar 2012 22:43:12 +0000 (23:43 +0100)
committerAntoine Pitrou <solipsis@pitrou.net>
Sat, 10 Mar 2012 22:43:12 +0000 (23:43 +0100)
(PPC buildbot)

Include/genobject.h

index e7a1c01d3d6c043fe5020f8e22ef99706c0cf239..23264918f0769892e4d304d090cb8dbaf1115fe7 100644 (file)
@@ -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;