diff options
author | Austin Seipp <austin@well-typed.com> | 2014-07-21 20:36:35 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-07-28 09:29:17 -0500 |
commit | a6fc4bdb77b3773a6f2a33f8032eab15b22b8e0b (patch) | |
tree | 178462465fb4a0a5dd640ca73fc221779d726ce3 /rts/ThreadLabels.c | |
parent | d76535983f4dd6fe3f239c6a5b3439440de86ea2 (diff) | |
download | haskell-a6fc4bdb77b3773a6f2a33f8032eab15b22b8e0b.tar.gz |
rts: delint/detab/dewhitespace ThreadLabels.c
Signed-off-by: Austin Seipp <austin@well-typed.com>
Diffstat (limited to 'rts/ThreadLabels.c')
-rw-r--r-- | rts/ThreadLabels.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/rts/ThreadLabels.c b/rts/ThreadLabels.c index 8838042a83..981a5d9771 100644 --- a/rts/ThreadLabels.c +++ b/rts/ThreadLabels.c @@ -59,7 +59,7 @@ removeThreadLabel(StgWord key) if ((old = lookupHashTable(threadLabels,key))) { removeHashTable(threadLabels,key,old); stgFree(old); - } + } } #endif /* DEBUG */ @@ -82,4 +82,3 @@ labelThread(Capability *cap STG_UNUSED, #endif traceThreadLabel(cap, tso, label); } - |