fixed typo
authorStefan Behnel <scoder@users.berlios.de>
Wed, 26 Nov 2008 13:58:56 +0000 (14:58 +0100)
committerStefan Behnel <scoder@users.berlios.de>
Wed, 26 Nov 2008 13:58:56 +0000 (14:58 +0100)
Cython/Compiler/Nodes.py

index 73a57495b8f43084051fadfb4f90e02abe657ff4..a2efeed51fb28ed76b450db75b99a2a91e9c632b 100644 (file)
@@ -800,7 +800,7 @@ class CStructOrUnionDefNode(StatNode):
             for attr in self.attributes:
                 attr.analyse_declarations(env, scope)
             if self.visibility != 'extern':
-                needs_typedef_indirection = False
+                need_typedef_indirection = False
                 for attr in scope.var_entries:
                     type = attr.type
                     while type.is_array: