diff options
author | Simon Marlow <marlowsd@gmail.com> | 2010-01-22 16:48:34 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2010-01-22 16:48:34 +0000 |
commit | f1d99ae043da2a4825d88756275477d82d92c967 (patch) | |
tree | 8e7092328f9c96f3b6307e9fb8d8a59b7f8cd6ca /rts/Globals.c | |
parent | 849ce0c790ae8eeb636c722149993e7fb9766c9d (diff) | |
download | haskell-f1d99ae043da2a4825d88756275477d82d92c967.tar.gz |
'store' should be static (#3835)
Diffstat (limited to 'rts/Globals.c')
-rw-r--r-- | rts/Globals.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Globals.c b/rts/Globals.c index 00d911ac56..01d8a8f1fd 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) |