diff --git a/std/process.d b/std/process.d index f1028e2d607..82e0d795cfc 100644 --- a/std/process.d +++ b/std/process.d @@ -1076,7 +1076,7 @@ private Pid spawnProcessPosix(scope const(char[])[] args, if (entry is null) break; if (entry.d_name[0] == '.') continue; - int fd = atoi(cast(char*)entry.d_name); + int fd = atoi(cast(char*) entry.d_name); // Don't close stdin, stdout, stderr, forkPipeOut or the directory file descriptor if (fd < 3 || fd == forkPipeOut || fd == opendirfd) continue;