diff options
author | Yves Orton <demerphq@gmail.com> | 2022-08-26 07:44:41 +0200 |
---|---|---|
committer | Yves Orton <demerphq@gmail.com> | 2022-08-27 09:07:59 +0200 |
commit | 39629dcf252e9b6fba4baa64d120c04d6ca5e76e (patch) | |
tree | e8a3bcae1f32f83eb0e746dcdc26cc62f61917ad | |
parent | 305697f3995f7ddfba2e200c5deb2e274e1136c0 (diff) | |
download | perl-39629dcf252e9b6fba4baa64d120c04d6ca5e76e.tar.gz |
gv.c - use SVf_QUOTEDPREFIX in error message
I overlooked this case when SVf_QUOTEDPREFIX was introduced
-rw-r--r-- | gv.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -916,8 +916,8 @@ S_gv_fetchmeth_internal(pTHX_ HV* stash, SV* meth, const char* name, STRLEN len, } else { Perl_ck_warner(aTHX_ packWARN(WARN_SYNTAX), "While trying to resolve method call %.*s->%.*s()" - " can not locate package \"%" SVf "\" yet it is mentioned in @%.*s::ISA" - " (perhaps you forgot to load \"%" SVf "\"?)", + " can not locate package %" SVf_QUOTEDPREFIX " yet it is mentioned in @%.*s::ISA" + " (perhaps you forgot to load %" SVf_QUOTEDPREFIX "?)", (int) hvnamelen, hvname, (int) len, name, SVfARG(linear_sv), |