From 93d69a7948d3ecebcfd8fd98d0909af56ef4993f Mon Sep 17 00:00:00 2001 From: Fredrik Lundh Date: Sun, 18 Dec 2005 15:44:21 +0000 Subject: fixed compilation with an ordinary C89 compiler --- Python/compile.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Python/compile.c') diff --git a/Python/compile.c b/Python/compile.c index 60b4933a9f..3ada52b3db 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -296,8 +296,7 @@ PyCodeObject * PyNode_Compile(struct _node *n, const char *filename) { PyCodeObject *co = NULL; - PyArena *arena; - arena = PyArena_New(); + PyArena *arena = PyArena_New(); mod_ty mod = PyAST_FromNode(n, NULL, filename, arena); if (mod) co = PyAST_Compile(mod, filename, NULL, arena); -- cgit v1.2.1