diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-06-29 19:25:24 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-06-29 19:25:24 +0000 |
commit | e203899dcaadab28f2ff9e515fbc895686054f71 (patch) | |
tree | 22948c5798417be634b104f753423112d77fb415 /gv.c | |
parent | c69033f2a629160559f680da8e4e5a7e3c4c3a0c (diff) | |
download | perl-e203899dcaadab28f2ff9e515fbc895686054f71.tar.gz |
Fixes to -DPERL_DONT_CREATE_GVSV to make more tests pass
p4raw-id: //depot/perl@25010
Diffstat (limited to 'gv.c')
-rw-r--r-- | gv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -582,7 +582,7 @@ Perl_gv_autoload4(pTHX_ HV *stash, const char *name, STRLEN len, I32 method) #endif } LEAVE; - varsv = GvSV(vargv); + varsv = GvSVn(vargv); sv_setpvn(varsv, packname, packname_len); sv_catpvn(varsv, "::", 2); sv_catpvn(varsv, name, len); |