From 1a4ff8d84caf442116e48557f3b8eee353455430 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Thu, 1 Nov 2007 15:02:58 +0000 Subject: [PATCH] fix warnings --- rts/Papi.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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); -- 1.7.10.4