Change 34381 by [EMAIL PROTECTED] on 2008/09/20 11:38:46

        Two missing 'static's, spotted by Merijn's smoker.

Affected files ...

... //depot/perl/av.c#134 edit
... //depot/perl/regcomp.c#658 edit

Differences ...

==== //depot/perl/av.c#134 (text) ====
Index: perl/av.c
--- perl/av.c#133~34311~        2008-09-07 14:38:23.000000000 -0700
+++ perl/av.c   2008-09-20 04:38:46.000000000 -0700
@@ -984,7 +984,7 @@
        return FALSE;
 }
 
-MAGIC *
+static MAGIC *
 S_get_aux_mg(pTHX_ AV *av) {
     dVAR;
     MAGIC *mg;

==== //depot/perl/regcomp.c#658 (text) ====
Index: perl/regcomp.c
--- perl/regcomp.c#657~34151~   2008-07-17 23:36:09.000000000 -0700
+++ perl/regcomp.c      2008-09-20 04:38:46.000000000 -0700
@@ -8841,7 +8841,7 @@
  - regdump - dump a regexp onto Perl_debug_log in vaguely comprehensible form
  */
 #ifdef DEBUGGING
-void 
+static void 
 S_regdump_extflags(pTHX_ const char *lead, const U32 flags)
 {
     int bit;
End of Patch.

Reply via email to