fix compile errors

This commit is contained in:
Benjamin Peterson 2008-08-17 01:27:30 +00:00
parent e3444c8b59
commit 025d9392a6
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ typedef struct _symtable_entry {
PyObject *ste_children; /* list of child ids */
_Py_block_ty ste_type; /* module, class, or function */
int ste_unoptimized; /* false if namespace is optimized */
int ste_nested : ; /* true if block is nested */
int ste_nested; /* true if block is nested */
unsigned ste_free : 1; /* true if block has free variables */
unsigned ste_child_free : 1; /* true if a child block has free vars,
including free refs to globals */