From: Jerry D. Hedden Date: Fri, 13 Nov 2009 13:55:20 +0000 (-0500) Subject: Fix compiler warning: X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=520bb15084a0e2fc0e05c6506b3265cad2d8f438;p=p5sagit%2Fp5-mst-13.2.git Fix compiler warning: scope.c:96:8: warning: extra tokens at end of #endif directive --- diff --git a/scope.c b/scope.c index 5da2554..ed4c835 100644 --- a/scope.c +++ b/scope.c @@ -93,7 +93,7 @@ Perl_push_scope(pTHX) Renew(PL_scopestack, PL_scopestack_max, I32); #ifdef DEBUGGING Renew(PL_scopestack_name, PL_scopestack_max, const char*); -#endif DEBUGGING +#endif } #ifdef DEBUGGING PL_scopestack_name[PL_scopestack_ix] = "unknown";