summaryrefslogtreecommitdiff
path: root/cop.h
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2005-11-10 16:47:00 -0600
committerSteve Peters <steve@fisharerojo.org>2005-11-11 04:55:56 +0000
commit0bcc34c2b0b0cb62c0df3d5e562b779fb96595ba (patch)
treebe9a7c05ed82c609d0018f1f3ac8395cdefc28a7 /cop.h
parent50c1ac04356af5f8e8f967db7ed083187aacb550 (diff)
downloadperl-0bcc34c2b0b0cb62c0df3d5e562b779fb96595ba.tar.gz
Const & local: Special Victims Unit
Message-ID: <20051111044700.GA24161@petdance.com> p4raw-id: //depot/perl@26082
Diffstat (limited to 'cop.h')
-rw-r--r--cop.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cop.h b/cop.h
index 618da4dea2..ff09420e56 100644
--- a/cop.h
+++ b/cop.h
@@ -741,9 +741,9 @@ See L<perlcall/Lightweight Callbacks>.
#define PUSH_MULTICALL(the_cv) \
STMT_START { \
- CV *_nOnclAshIngNamE_ = the_cv; \
- CV *cv = _nOnclAshIngNamE_; \
- AV* padlist = CvPADLIST(cv); \
+ CV * const _nOnclAshIngNamE_ = the_cv; \
+ CV * const cv = _nOnclAshIngNamE_; \
+ AV * const padlist = CvPADLIST(cv); \
ENTER; \
multicall_oldcatch = CATCH_GET; \
SAVETMPS; SAVEVPTR(PL_op); \