diff options
author | cheatfate <ka@hardcore.kiev.ua> | 2017-11-29 03:57:29 +0200 |
---|---|---|
committer | cheatfate <ka@hardcore.kiev.ua> | 2017-11-29 03:57:29 +0200 |
commit | fbe0ae74fba5a22bbaea0cc8e68dbf9327c4ce6d (patch) | |
tree | 55b8fd02a0d6e968b70f69f1b569e4ea98d0733d /lib | |
parent | c4a57e711b154c7fa333ec6daac25059e1fd3c6f (diff) | |
download | Nim-fbe0ae74fba5a22bbaea0cc8e68dbf9327c4ce6d.tar.gz |
Explicit array initialization removed.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/osproc.nim | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/pure/osproc.nim b/lib/pure/osproc.nim index 6e0307c8f..29f0380a3 100644 --- a/lib/pure/osproc.nim +++ b/lib/pure/osproc.nim @@ -240,8 +240,6 @@ proc execProcesses*(cmds: openArray[string], when defined(windows): var w: WOHandleArray var wcount = m - for c in 0..MAXIMUM_WAIT_OBJECTS - 1: - w[c] = 0 while i < m: if beforeRunEvent != nil: |