From: Wolfgang Bumiller Date: Tue, 21 Jan 2020 15:04:18 +0000 (+0100) Subject: formatting fixup X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=d6ba646c650c4bc61bb98b6691b176094d55e76b;p=pve-lxc-syscalld.git formatting fixup Signed-off-by: Wolfgang Bumiller --- diff --git a/src/process/pid_fd.rs b/src/process/pid_fd.rs index cc404f4..41aa3ee 100644 --- a/src/process/pid_fd.rs +++ b/src/process/pid_fd.rs @@ -26,9 +26,7 @@ impl PidFd { } pub fn open(pid: pid_t) -> io::Result { - let fd = c_try!(unsafe { - libc::syscall(SYS_PIDFD_OPEN, pid, 0) - }); + let fd = c_try!(unsafe { libc::syscall(SYS_PIDFD_OPEN, pid, 0) }); Ok(Self(fd as RawFd, pid)) }