diff options
Diffstat (limited to 'rts/RtsUtils.c')
-rw-r--r-- | rts/RtsUtils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/RtsUtils.c b/rts/RtsUtils.c index 3a9742744f..31dc060244 100644 --- a/rts/RtsUtils.c +++ b/rts/RtsUtils.c @@ -155,7 +155,7 @@ heapOverflow(void) rtsConfig.outOfHeapHook(0/*unknown request size*/, (W_)RtsFlags.GcFlags.maxHeapSize * BLOCK_SIZE); - heap_overflow = rtsTrue; + heap_overflow = true; } } @@ -187,7 +187,7 @@ time_str(void) -------------------------------------------------------------------------- */ char * -showStgWord64(StgWord64 x, char *s, rtsBool with_commas) +showStgWord64(StgWord64 x, char *s, bool with_commas) { if (with_commas) { if (x < (StgWord64)1e3) |