summaryrefslogtreecommitdiff
path: root/Cython/Compiler/ModuleNode.py
diff options
context:
space:
mode:
Diffstat (limited to 'Cython/Compiler/ModuleNode.py')
-rw-r--r--Cython/Compiler/ModuleNode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Compiler/ModuleNode.py b/Cython/Compiler/ModuleNode.py
index 0a7308562..635dcd543 100644
--- a/Cython/Compiler/ModuleNode.py
+++ b/Cython/Compiler/ModuleNode.py
@@ -2787,7 +2787,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
env.module_cname,
Naming.pymoduledef_cname))
module_state.putln("#else")
- module_state.putln('static %s %s_static = {};' % (
+ module_state.putln('static %s %s_static = {0};' % (
Naming.modulestate_cname,
Naming.modulestateglobal_cname
))