diff options
author | Austin Seipp <austin@well-typed.com> | 2014-07-21 19:41:44 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-07-28 09:29:13 -0500 |
commit | b64958b4304eba7492881cc0eb9b07d15db584a4 (patch) | |
tree | 32a728dc1dcdc048c0705ced0e0b291dcfa3f6ae /rts/win32 | |
parent | fdcc6991e13f33aca4f4a2f3bf1a4559ebcd8c25 (diff) | |
download | haskell-b64958b4304eba7492881cc0eb9b07d15db584a4.tar.gz |
rts: delint/detab/dewhitespace win32/AwaitEvent.c
Signed-off-by: Austin Seipp <austin@well-typed.com>
Diffstat (limited to 'rts/win32')
-rw-r--r-- | rts/win32/AwaitEvent.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rts/win32/AwaitEvent.c b/rts/win32/AwaitEvent.c index af9c658e02..feae4c86ed 100644 --- a/rts/win32/AwaitEvent.c +++ b/rts/win32/AwaitEvent.c @@ -8,7 +8,7 @@ * If the Scheduler is otherwise out of work, it'll block * herein waiting for external events to occur. * - * This file mirrors the select()-based functionality + * This file mirrors the select()-based functionality * for POSIX / Unix platforms in rts/Select.c, but for * Win32. * @@ -50,8 +50,8 @@ awaitEvent(rtsBool wait) // - the run-queue is now non- empty } while (wait - && sched_state == SCHED_RUNNING - && emptyRunQueue(&MainCapability) + && sched_state == SCHED_RUNNING + && emptyRunQueue(&MainCapability) ); } #endif |