From: Simon Marlow Date: Thu, 1 Nov 2007 15:02:58 +0000 (+0000) Subject: fix warnings X-Git-Tag: Before_cabalised-GHC~290 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=1a4ff8d84caf442116e48557f3b8eee353455430;p=ghc-hetmet.git fix warnings --- diff --git a/rts/Papi.c b/rts/Papi.c index 8e8900f..d442718 100644 --- a/rts/Papi.c +++ b/rts/Papi.c @@ -145,15 +145,15 @@ init_countable_events(void) static char temp[BIG_STRING_LEN]; -void -papi_mut_cycles() +static void +papi_mut_cycles(void) { ullong_format_string(mutator_cycles,temp,rtsTrue/*commas*/); statsPrintf(" (MUT_CYCLES) : %s\n",temp); } -void -papi_gc_cycles() +static void +papi_gc_cycles(void) { ullong_format_string(gc_cycles,temp,rtsTrue/*commas*/); statsPrintf(" (GC_CYCLES) : %s\n",temp);