From 7288cd0614a6b16d762b72df815808feb07cc264 Mon Sep 17 00:00:00 2001 From: Yuichi Nishiwaki Date: Fri, 7 Feb 2014 02:15:08 +0900 Subject: [PATCH] redefinition might be against a local variable --- src/codegen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/codegen.c b/src/codegen.c index 33129291..7e36dcb6 100644 --- a/src/codegen.c +++ b/src/codegen.c @@ -231,7 +231,7 @@ define_var(analyze_state *state, pic_sym sym) xh_entry *e; if ((e = xh_get_int(scope->var_tbl, sym))) { - pic_warn(pic, "redefining global variable"); + pic_warn(pic, "redefining variable"); return; }