From: Nicholas Clark Date: Sat, 20 Sep 2008 11:38:46 +0000 (+0000) Subject: Two missing 'static's, spotted by Merijn's smoker. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c33269f7ccb458ff862134e5befab709e725fca7;p=p5sagit%2Fp5-mst-13.2.git Two missing 'static's, spotted by Merijn's smoker. p4raw-id: //depot/perl@34381 --- diff --git a/av.c b/av.c index 3d15d58..3c9d796 100644 --- a/av.c +++ b/av.c @@ -984,7 +984,7 @@ Perl_av_exists(pTHX_ AV *av, I32 key) return FALSE; } -MAGIC * +static MAGIC * S_get_aux_mg(pTHX_ AV *av) { dVAR; MAGIC *mg; diff --git a/regcomp.c b/regcomp.c index f461fea..d2567d0 100644 --- a/regcomp.c +++ b/regcomp.c @@ -8841,7 +8841,7 @@ S_regcurly(register const char *s) - 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;