From: Simon Marlow Date: Fri, 22 Jan 2010 16:48:34 +0000 (+0000) Subject: 'store' should be static (#3835) X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=f1d99ae043da2a4825d88756275477d82d92c967 'store' should be static (#3835) --- 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)