[commit: ghc] master: Fix variable name typo from commit 3021fb (6640635)
git at git.haskell.org
git at git.haskell.org
Wed Jul 30 05:13:05 UTC 2014
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/6640635e6e2654f0acd8f10e0d02a8bd1c8296ff/ghc
>---------------------------------------------------------------
commit 6640635e6e2654f0acd8f10e0d02a8bd1c8296ff
Author: Niklas Larsson <niklas at mm.st>
Date: Wed Jul 30 03:48:19 2014 +0200
Fix variable name typo from commit 3021fb
Signed-off-by: Austin Seipp <austin at well-typed.com>
>---------------------------------------------------------------
6640635e6e2654f0acd8f10e0d02a8bd1c8296ff
rts/win32/AsyncIO.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rts/win32/AsyncIO.c b/rts/win32/AsyncIO.c
index 265f93c..412f31b 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) {
More information about the ghc-commits
mailing list