diff options
Diffstat (limited to 'rts/Globals.c')
-rw-r--r-- | rts/Globals.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/Globals.c b/rts/Globals.c index 2e4b99474f..4b899b15ba 100644 --- a/rts/Globals.c +++ b/rts/Globals.c @@ -45,7 +45,7 @@ static StgStablePtr store[MaxStoreKey]; void initGlobalStore(void) { - nat i; + uint32_t i; for (i=0; i < MaxStoreKey; i++) { store[i] = 0; } @@ -57,7 +57,7 @@ initGlobalStore(void) void exitGlobalStore(void) { - nat i; + uint32_t i; #ifdef THREADED_RTS closeMutex(&globalStoreLock); #endif |