Change 33142 by [EMAIL PROTECTED] on 2008/01/31 09:12:36

        Fix compiler warning introduced in DEBUGGING builds by #33103

Affected files ...

... //depot/perl/embed.fnc#567 edit
... //depot/perl/proto.h#901 edit

Differences ...

==== //depot/perl/embed.fnc#567 (text) ====
Index: perl/embed.fnc
--- perl/embed.fnc#566~33106~   2008-01-29 07:06:55.000000000 -0800
+++ perl/embed.fnc      2008-01-31 01:12:36.000000000 -0800
@@ -1585,7 +1585,7 @@
 #  endif
 #  if defined(DEBUGGING)
 s      |int    |tokereport     |I32 rv|NN const YYSTYPE* lvalp
-s      |void   |printbuf       |NN const char *const fmt|NN const char* s
+s      |void   |printbuf       |NN const char *const fmt|NN const char *const s
 #  endif
 #endif
 

==== //depot/perl/proto.h#901 (text+w) ====
Index: perl/proto.h
--- perl/proto.h#900~33106~     2008-01-29 07:06:55.000000000 -0800
+++ perl/proto.h        2008-01-31 01:12:36.000000000 -0800
@@ -4171,7 +4171,7 @@
 STATIC int     S_tokereport(pTHX_ I32 rv, const YYSTYPE* lvalp)
                        __attribute__nonnull__(pTHX_2);
 
-STATIC void    S_printbuf(pTHX_ const char *const fmt, const char* s)
+STATIC void    S_printbuf(pTHX_ const char *const fmt, const char *const s)
                        __attribute__nonnull__(pTHX_1)
                        __attribute__nonnull__(pTHX_2);
 
End of Patch.

Reply via email to