diff options
author | Niklas Larsson <niklas@mm.st> | 2014-07-30 03:48:19 +0200 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-07-30 00:11:42 -0500 |
commit | 6640635e6e2654f0acd8f10e0d02a8bd1c8296ff (patch) | |
tree | 419efb7fbb1d140bf2decf37f3727792d8680e21 /rts/win32 | |
parent | 535b37cbb5a11dd4c9d8260d1d00f4cb993af0e9 (diff) | |
download | haskell-6640635e6e2654f0acd8f10e0d02a8bd1c8296ff.tar.gz |
Fix variable name typo from commit 3021fb
Signed-off-by: Austin Seipp <austin@well-typed.com>
Diffstat (limited to 'rts/win32')
-rw-r--r-- | rts/win32/AsyncIO.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/win32/AsyncIO.c b/rts/win32/AsyncIO.c index 265f93ced7..412f31b43e 100644 --- a/rts/win32/AsyncIO.c +++ b/rts/win32/AsyncIO.c @@ -286,7 +286,7 @@ start: unsigned int rID = completedTable[i].reqID; prev = NULL; - for(tso = blocking_queue_hd; tso != END_TSO_QUEUE; + for(tso = blocked_queue_hd; tso != END_TSO_QUEUE; tso = tso->_link) { switch(tso->why_blocked) { |