std.process: Fix brace style

Fixes CircleCI style checks.
This commit is contained in:
Vladimir Panteleev 2017-06-13 21:49:04 +00:00
parent 9a91e25bbf
commit f5fed3d44c
No known key found for this signature in database
GPG key ID: 5004F0FAD051576D

View file

@ -574,11 +574,10 @@ private Pid spawnProcessImpl(in char[][] args,
assert(false);
}
if (readExecResult == error.sizeof) {
if (readExecResult == error.sizeof)
throw ProcessException.newFromErrno(error, errorMsg);
} else {
else
throw new ProcessException(errorMsg);
}
}
// Parent process: Close streams and return.