summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-08-27 10:15:07 -0600
committerKarl Williamson <khw@cpan.org>2020-09-05 10:15:53 -0600
commit3752a9fedb0ab448a219302b97944b6f2ea253a1 (patch)
tree13e786077ae48d92048e95660a698b5e310048d0 /proto.h
parent37738dd69b192fdc59c34ae34704f5154dfa4ed0 (diff)
downloadperl-3752a9fedb0ab448a219302b97944b6f2ea253a1.tar.gz
Change formal parameter name of gv_fetchpv*
This is a flags parameter, not a particular single flag
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index e156756096..24a43994ed 100644
--- a/proto.h
+++ b/proto.h
@@ -1314,7 +1314,7 @@ PERL_CALLCONV GV* Perl_gv_fetchmethod_pvn_flags(pTHX_ HV* stash, const char* nam
PERL_CALLCONV GV* Perl_gv_fetchmethod_sv_flags(pTHX_ HV* stash, SV* namesv, U32 flags);
#define PERL_ARGS_ASSERT_GV_FETCHMETHOD_SV_FLAGS \
assert(stash); assert(namesv)
-PERL_CALLCONV GV* Perl_gv_fetchpv(pTHX_ const char *nambeg, I32 add, const svtype sv_type);
+PERL_CALLCONV GV* Perl_gv_fetchpv(pTHX_ const char *nambeg, I32 flags, const svtype sv_type);
#define PERL_ARGS_ASSERT_GV_FETCHPV \
assert(nambeg)
PERL_CALLCONV GV* Perl_gv_fetchpvn_flags(pTHX_ const char* name, STRLEN len, I32 flags, const svtype sv_type);