summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2010-11-20 11:20:07 -0800
committerFather Chrysostomos <sprout@cpan.org>2010-11-20 18:15:14 -0800
commitafdbe55d0c4f11409419f813c4360c8ab300a779 (patch)
treed4fb56dd294696874058ba8d0ff994b987be270c /pp.c
parent745edda6f1b4ede54e0225b4d1528e96dc0217a0 (diff)
downloadperl-afdbe55d0c4f11409419f813c4360c8ab300a779.tar.gz
Eliminate the newname param from mro_package_moved
Nothing is using this any more, as of the previous commit.
Diffstat (limited to 'pp.c')
-rw-r--r--pp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp.c b/pp.c
index 9e762d5d93..297b532058 100644
--- a/pp.c
+++ b/pp.c
@@ -892,7 +892,7 @@ PP(pp_undef)
GvMULTI_on(sv);
if(stash)
- mro_package_moved(NULL, stash, (const GV *)sv, NULL, 0);
+ mro_package_moved(NULL, stash, (const GV *)sv, 0);
stash = NULL;
/* undef *Foo::ISA */
if( strEQ(GvNAME((const GV *)sv), "ISA")