From 09f177e0ccdea872fb560e834efa897030cb06de Mon Sep 17 00:00:00 2001 From: Erik O'Leary Date: Fri, 10 Oct 2014 22:49:44 -0500 Subject: [PATCH] patched fdset call in osproc --- lib/pure/osproc.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pure/osproc.nim b/lib/pure/osproc.nim index f47df73ca0..0557b26f7d 100644 --- a/lib/pure/osproc.nim +++ b/lib/pure/osproc.nim @@ -887,7 +887,7 @@ elif not defined(useNimRtl): FD_ZERO(fd) for i in items(s): m = max(m, int(i.outHandle)) - fdSet(cint(i.outHandle), fd) + FD_SET(cint(i.outHandle), fd) proc pruneProcessSet(s: var seq[Process], fd: var TFdSet) = var i = 0