'store' should be static (#3835)
authorSimon Marlow <marlowsd@gmail.com>
Fri, 22 Jan 2010 16:48:34 +0000 (16:48 +0000)
committerSimon Marlow <marlowsd@gmail.com>
Fri, 22 Jan 2010 16:48:34 +0000 (16:48 +0000)
rts/Globals.c

index 00d911a..01d8a8f 100644 (file)
@@ -32,7 +32,7 @@ typedef enum {
 Mutex globalStoreLock;
 #endif
 
-StgStablePtr store[MaxStoreKey];
+static StgStablePtr store[MaxStoreKey];
 
 void
 initGlobalStore(void)