summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorTony Cook <tony@develop-help.com>2010-10-24 11:26:50 +1100
committerTony Cook <tony@develop-help.com>2010-10-24 11:26:50 +1100
commitfe00c367fe78b2f74d9843e2172251b5dde5054a (patch)
tree78dd297ae87fc9686f8d0eac7ed53b2765823072 /sv.c
parent31f1461f4bbbc0db195fcb42708a5e4340d7eee0 (diff)
downloadperl-fe00c367fe78b2f74d9843e2172251b5dde5054a.tar.gz
make the definition of sv_catpv_flags match the declaration
This was warning on Win32
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sv.c b/sv.c
index a42452aa14..9afc3f6180 100644
--- a/sv.c
+++ b/sv.c
@@ -4924,7 +4924,7 @@ on the SVs if appropriate, else not.
*/
void
-Perl_sv_catpv_flags(pTHX_ SV *dstr, const char *sstr, I32 flags)
+Perl_sv_catpv_flags(pTHX_ SV *dstr, const char *sstr, const I32 flags)
{
PERL_ARGS_ASSERT_SV_CATPV_FLAGS;
sv_catpvn_flags(dstr, sstr, strlen(sstr), flags);