summaryrefslogtreecommitdiff
path: root/scope.c
diff options
context:
space:
mode:
authorJerry D. Hedden <jdhedden@cpan.org>2009-11-13 08:55:20 -0500
committerVincent Pit <vince@profvince.com>2009-11-13 17:44:17 +0100
commit520bb15084a0e2fc0e05c6506b3265cad2d8f438 (patch)
tree1a292964c7c28090fef8a0a125b841aa5afc749b /scope.c
parent295d248eafe9bd5657e90c011cae790087ab221d (diff)
downloadperl-520bb15084a0e2fc0e05c6506b3265cad2d8f438.tar.gz
Fix compiler warning:
scope.c:96:8: warning: extra tokens at end of #endif directive
Diffstat (limited to 'scope.c')
-rw-r--r--scope.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scope.c b/scope.c
index 5da2554292..ed4c835de9 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";