diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-07-15 12:56:03 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-07-15 12:56:03 +0200 |
commit | 0834cd63d99a8a63682a033bd6222dc6cee4b3a9 (patch) | |
tree | b155afdfd863273b066f595da2de0bfd5dbb46aa /lib/pure/osproc.nim | |
parent | 3e72c98d49ff6c9c07251e2497c5b245770bec5e (diff) | |
download | Nim-0834cd63d99a8a63682a033bd6222dc6cee4b3a9.tar.gz |
prepare Nim codebase for upcoming parser changes
Diffstat (limited to 'lib/pure/osproc.nim')
-rw-r--r-- | lib/pure/osproc.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/osproc.nim b/lib/pure/osproc.nim index 1ec4d0d8d..03b77572a 100644 --- a/lib/pure/osproc.nim +++ b/lib/pure/osproc.nim @@ -721,7 +721,7 @@ elif not defined(useNimRtl): env: StringTableRef = nil, options: set[ProcessOption] = {poStdErrToStdOut}): Process = var - pStdin, pStdout, pStderr: array [0..1, cint] + pStdin, pStdout, pStderr: array[0..1, cint] new(result) result.options = options result.exitCode = -3 # for ``waitForExit`` |