From 0cbdb1b847d814b65dc1a57a86985e6ae4f4a9d3 Mon Sep 17 00:00:00 2001 From: Andrea Fontana Date: Thu, 2 May 2024 12:11:18 +0200 Subject: [PATCH] Style #2 --- std/process.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;