summaryrefslogtreecommitdiff
path: root/sv.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-10-08 14:36:33 -0600
committerKarl Williamson <khw@cpan.org>2020-11-09 12:45:20 -0700
commit37ee558d221d91b9b74247d7f4fcae5bb2959a5c (patch)
tree553b46ad4f499d2c715422e7ce5e2fd2b32ebd73 /sv.h
parent05594d284abefbd6e7aa1f32daeb9a801990b66a (diff)
downloadperl-37ee558d221d91b9b74247d7f4fcae5bb2959a5c.tar.gz
sv.c: Change some formal param names for clarity, consistency
The names previously indicated some things were strings that weren't necessarily so. Some nearly identical functions had varying parameter names.
Diffstat (limited to 'sv.h')
-rw-r--r--sv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sv.h b/sv.h
index cc3be47ef3..8195376bb7 100644
--- a/sv.h
+++ b/sv.h
@@ -2035,7 +2035,7 @@ Like C<sv_catsv> but doesn't process magic.
#define sv_catsv_nomg(dsv, ssv) sv_catsv_flags(dsv, ssv, 0)
#define sv_catsv_mg(dsv, ssv) sv_catsv_flags(dsv, ssv, SV_GMAGIC|SV_SMAGIC)
#define sv_catpvn(dsv, sstr, slen) sv_catpvn_flags(dsv, sstr, slen, SV_GMAGIC)
-#define sv_catpvn_mg(sv, sstr, slen) sv_catpvn_flags(sv, sstr, slen, SV_GMAGIC|SV_SMAGIC);
+#define sv_catpvn_mg(dsv, sstr, slen) sv_catpvn_flags(dsv, sstr, slen, SV_GMAGIC|SV_SMAGIC);
#define sv_copypv(dsv, ssv) sv_copypv_flags(dsv, ssv, SV_GMAGIC)
#define sv_copypv_nomg(dsv, ssv) sv_copypv_flags(dsv, ssv, 0)
#define sv_2pv(sv, lp) sv_2pv_flags(sv, lp, SV_GMAGIC)