From: Benjamin Peterson Date: Sun, 17 Aug 2008 01:27:30 +0000 (+0000) Subject: fix compile errors X-Git-Tag: v2.6b3~60 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=025d9392a6929d15ee542aeeaa4a7710745d6afe;p=thirdparty%2FPython%2Fcpython.git fix compile errors --- diff --git a/Include/symtable.h b/Include/symtable.h index 02cffb9f502a..32b4ebff3362 100644 --- a/Include/symtable.h +++ b/Include/symtable.h @@ -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 */