diff options
author | Karl Williamson <khw@cpan.org> | 2020-08-27 10:15:07 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2020-09-05 10:15:53 -0600 |
commit | 3752a9fedb0ab448a219302b97944b6f2ea253a1 (patch) | |
tree | 13e786077ae48d92048e95660a698b5e310048d0 /gv.c | |
parent | 37738dd69b192fdc59c34ae34704f5154dfa4ed0 (diff) | |
download | perl-3752a9fedb0ab448a219302b97944b6f2ea253a1.tar.gz |
Change formal parameter name of gv_fetchpv*
This is a flags parameter, not a particular single flag
Diffstat (limited to 'gv.c')
-rw-r--r-- | gv.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1607,9 +1607,9 @@ Perl_gv_stashsv(pTHX_ SV *sv, I32 flags) GV * -Perl_gv_fetchpv(pTHX_ const char *nambeg, I32 add, const svtype sv_type) { +Perl_gv_fetchpv(pTHX_ const char *nambeg, I32 flags, const svtype sv_type) { PERL_ARGS_ASSERT_GV_FETCHPV; - return gv_fetchpvn_flags(nambeg, strlen(nambeg), add, sv_type); + return gv_fetchpvn_flags(nambeg, strlen(nambeg), flags, sv_type); } GV * |