From f1d99ae043da2a4825d88756275477d82d92c967 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Fri, 22 Jan 2010 16:48:34 +0000 Subject: [PATCH] 'store' should be static (#3835) --- rts/Globals.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rts/Globals.c b/rts/Globals.c index 00d911a..01d8a8f 100644 --- a/rts/Globals.c +++ b/rts/Globals.c @@ -32,7 +32,7 @@ typedef enum { Mutex globalStoreLock; #endif -StgStablePtr store[MaxStoreKey]; +static StgStablePtr store[MaxStoreKey]; void initGlobalStore(void) -- 1.7.10.4