summaryrefslogtreecommitdiff
path: root/rts/win32
diff options
context:
space:
mode:
authorNiklas Larsson <niklas@mm.st>2014-07-30 03:48:19 +0200
committerAustin Seipp <austin@well-typed.com>2014-07-30 00:11:42 -0500
commit6640635e6e2654f0acd8f10e0d02a8bd1c8296ff (patch)
tree419efb7fbb1d140bf2decf37f3727792d8680e21 /rts/win32
parent535b37cbb5a11dd4c9d8260d1d00f4cb993af0e9 (diff)
downloadhaskell-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.c2
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) {