summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-11-15 10:15:43 +0000
committerNicholas Clark <nick@ccl4.org>2009-11-15 10:15:43 +0000
commit59cfed7d3d8869650cb695575c07168f937381f0 (patch)
tree5d4b141b225c4b784d67a5f9e57757f9ee350eca /op.c
parent2d12d04f1cca69e8010b11cf63b89ce3b00490b9 (diff)
downloadperl-59cfed7d3d8869650cb695575c07168f937381f0.tar.gz
Make the style of pad_add_name's flags consistent with pad_new's and pad_tidy's.
Diffstat (limited to 'op.c')
-rw-r--r--op.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/op.c b/op.c
index 93d78c9758..ae7163d63d 100644
--- a/op.c
+++ b/op.c
@@ -409,8 +409,8 @@ Perl_allocmy(pTHX_ const char *const name, const STRLEN len, const U32 flags)
/* allocate a spare slot and store the name in that slot */
off = pad_add_name(name, len,
- is_our ? pad_add_OUR :
- PL_parser->in_my == KEY_state ? pad_add_STATE : 0,
+ is_our ? padadd_OUR :
+ PL_parser->in_my == KEY_state ? padadd_STATE : 0,
PL_parser->in_my_stash,
(is_our
/* $_ is always in main::, even with our */