diff options
author | Simon Marlow <marlowsd@gmail.com> | 2013-09-17 21:48:55 +0100 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2013-10-01 11:10:08 +0100 |
commit | cb7785f6c1c4cb582ec9aa8ec01255f1788571d7 (patch) | |
tree | cbcbd5ba457261535a2b5c48e75905fce2133d2e /rts | |
parent | 11b5ce550d1a9bc84dd97629e1cca0b356054898 (diff) | |
download | haskell-cb7785f6c1c4cb582ec9aa8ec01255f1788571d7.tar.gz |
use a nat, not StgWord8, for gc_type
Diffstat (limited to 'rts')
-rw-r--r-- | rts/Schedule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Schedule.c b/rts/Schedule.c index 07ebec62b1..7c4e67d9d4 100644 --- a/rts/Schedule.c +++ b/rts/Schedule.c @@ -1438,7 +1438,7 @@ scheduleDoGC (Capability **pcap, Task *task USED_IF_THREADS, rtsBool heap_census; nat collect_gen; #ifdef THREADED_RTS - StgWord8 gc_type; + nat gc_type; nat i, sync; StgTSO *tso; #endif |