In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/fe00c367fe78b2f74d9843e2172251b5dde5054a?hp=31f1461f4bbbc0db195fcb42708a5e4340d7eee0>

- Log -----------------------------------------------------------------
commit fe00c367fe78b2f74d9843e2172251b5dde5054a
Author: Tony Cook <[email protected]>
Date:   Sun Oct 24 11:26:50 2010 +1100

    make the definition of sv_catpv_flags match the declaration
    
    This was warning on Win32
-----------------------------------------------------------------------

Summary of changes:
 sv.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/sv.c b/sv.c
index a42452a..9afc3f6 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);

--
Perl5 Master Repository

Reply via email to