diff options
author | Jerry D. Hedden <jdhedden@cpan.org> | 2009-11-13 08:55:20 -0500 |
---|---|---|
committer | Vincent Pit <vince@profvince.com> | 2009-11-13 17:44:17 +0100 |
commit | 520bb15084a0e2fc0e05c6506b3265cad2d8f438 (patch) | |
tree | 1a292964c7c28090fef8a0a125b841aa5afc749b /scope.c | |
parent | 295d248eafe9bd5657e90c011cae790087ab221d (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"; |