diff options
| -rw-r--r-- | src/utils/spawning.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/spawning.rs b/src/utils/spawning.rs index 38ac52e6..286df68f 100644 --- a/src/utils/spawning.rs +++ b/src/utils/spawning.rs @@ -244,7 +244,7 @@ mod systemd { close(fd); } - // Convert the our FDs to OwnedFd, which will close them in all of our fork paths. + // Convert the FDs to OwnedFd, which will close them in all of our fork paths. let pipe_pid_write = pipe_pid_write_fd.take().map(|fd| OwnedFd::from_raw_fd(fd)); let pipe_wait_read = pipe_wait_read_fd.take().map(|fd| OwnedFd::from_raw_fd(fd)); |
