diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-02-02 00:36:38 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-02-02 00:36:38 +0000 |
commit | 71315bf2ed5c47e3f417cdce95f41fe9b0da6b1f (patch) | |
tree | 1779355572700dff2c66703cc911987108bd1d45 /pp_sort.c | |
parent | b208e10c815b328b5c2ddc25197ff4990f6302e0 (diff) | |
download | perl-71315bf2ed5c47e3f417cdce95f41fe9b0da6b1f.tar.gz |
Yet more instances of gv_fetchpv... that should be GV_ADD rather than
TRUE.
Convert two gv_fetchpvn_flags to gv_fetchpvs.
p4raw-id: //depot/perl@27050
Diffstat (limited to 'pp_sort.c')
-rw-r--r-- | pp_sort.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1631,8 +1631,8 @@ PP(pp_sort) SAVESPTR(PL_firstgv); SAVESPTR(PL_secondgv); SAVESPTR(PL_sortstash); - PL_firstgv = gv_fetchpvs("a", TRUE, SVt_PV); - PL_secondgv = gv_fetchpvs("b", TRUE, SVt_PV); + PL_firstgv = gv_fetchpvs("a", GV_ADD, SVt_PV); + PL_secondgv = gv_fetchpvs("b", GV_ADD, SVt_PV); PL_sortstash = stash; SAVESPTR(GvSV(PL_firstgv)); SAVESPTR(GvSV(PL_secondgv)); |