From f3d3ab5a6947b090ae3c3e5c76bf37319c72baae Mon Sep 17 00:00:00 2001 From: Henry Kroll III Date: Mon, 6 Dec 2010 16:33:54 -0800 Subject: [PATCH] tcc: move undef out of if block --- tcc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcc.c b/tcc.c index 692d355..81a3265 100644 --- a/tcc.c +++ b/tcc.c @@ -236,9 +236,9 @@ void exec_other_tcc(TCCState *s, int argc,char **argv,int optarg) execvp(arg, WIN32_CAST (argv)); error("cross compiler not found!"); exit(1); -#undef WIN32_CAST } else warning("-m32 infinite loop prevented"); } else warning("usupported option \"-m%s\"",optarg); +#undef WIN32_CAST #endif }