From e2880aa2fdc75298df487df7519d483acb03959c Mon Sep 17 00:00:00 2001 From: Damien Date: Fri, 20 Dec 2013 14:22:59 +0000 Subject: Fix a few compiler warnings. --- py/compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'py') diff --git a/py/compile.c b/py/compile.c index ea0bbc2d55..42bac7d28a 100644 --- a/py/compile.c +++ b/py/compile.c @@ -1610,7 +1610,7 @@ void compile_try_except(compiler_t *comp, py_parse_node_t pn_body, int n_except, EMIT(pop_top); - int l3; + int l3 = 0; if (qstr_exception_local != 0) { l3 = comp_next_label(comp); EMIT(setup_finally, l3); -- cgit v1.2.3