mirror of
https://github.com/dlang/phobos.git
synced 2025-04-27 13:40:20 +03:00
std.process: Fix brace style
Fixes CircleCI style checks.
This commit is contained in:
parent
9a91e25bbf
commit
f5fed3d44c
1 changed files with 2 additions and 3 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue