In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/5747a2f6732071d6477abc45c2e06d557f1a6c8a?hp=83452f8ea6ad77da7b6d12f161eedb3db3e647f3>

- Log -----------------------------------------------------------------
commit 5747a2f6732071d6477abc45c2e06d557f1a6c8a
Author: Rafael Garcia-Suarez <r...@consttype.org>
Date:   Fri Jan 15 11:29:47 2010 +0100

    Qualify pointer arguments of prescan_version in embed.fnc
-----------------------------------------------------------------------

Summary of changes:
 embed.fnc |    3 ++-
 proto.h   |    2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/embed.fnc b/embed.fnc
index abfa92b..d61ba8d 100644
--- a/embed.fnc
+++ b/embed.fnc
@@ -746,7 +746,8 @@ Ap  |char*  |scan_vstring   |NN const char *s|NN const char 
*const e \
                                |NN SV *sv
 Apd    |const char*    |scan_version   |NN const char *s|NN SV *rv|bool qv
 Apd    |const char*    |prescan_version        |NN const char *s\
-       |bool strict|NULLOK const char** errstr|bool *sqv|int *ssaw_period|int 
*swidth|bool *salpha
+       |bool strict|NULLOK const char** errstr|NULLOK bool *sqv\
+       |NULLOK int *ssaw_decimal|NULLOK int *swidth|NULLOK bool *salpha
 Apd    |SV*    |new_version    |NN SV *ver
 Apd    |SV*    |upg_version    |NN SV *ver|bool qv
 Apd    |bool   |vverify        |NN SV *vs
diff --git a/proto.h b/proto.h
index 223086c..4a343be 100644
--- a/proto.h
+++ b/proto.h
@@ -2383,7 +2383,7 @@ PERL_CALLCONV const char* Perl_scan_version(pTHX_ const 
char *s, SV *rv, bool qv
 #define PERL_ARGS_ASSERT_SCAN_VERSION  \
        assert(s); assert(rv)
 
-PERL_CALLCONV const char*      Perl_prescan_version(pTHX_ const char *s, bool 
strict, const char** errstr, bool *sqv, int *ssaw_period, int *swidth, bool 
*salpha)
+PERL_CALLCONV const char*      Perl_prescan_version(pTHX_ const char *s, bool 
strict, const char** errstr, bool *sqv, int *ssaw_decimal, int *swidth, bool 
*salpha)
                        __attribute__nonnull__(pTHX_1);
 #define PERL_ARGS_ASSERT_PRESCAN_VERSION       \
        assert(s)

--
Perl5 Master Repository

Reply via email to