From: Michal Sekletar Date: Mon, 9 Sep 2024 16:25:21 +0000 (+0200) Subject: coredump: fix coding style X-Git-Tag: v257-rc1~99^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a88e72be2c33feee18733750f77dc9bdb285be17;p=thirdparty%2Fsystemd.git coredump: fix coding style --- diff --git a/src/coredump/coredump.c b/src/coredump/coredump.c index f44aca211f7..70403e1221d 100644 --- a/src/coredump/coredump.c +++ b/src/coredump/coredump.c @@ -1675,7 +1675,17 @@ static int gather_pid_mount_tree_fd(const Context *context) { if (r < 0) return log_error_errno(r, "Failed to open mount namespace of crashing process: %m"); - r = namespace_fork("(sd-mount-tree-ns)", "(sd-mount-tree)", NULL, 0, FORK_RESET_SIGNALS|FORK_DEATHSIG_SIGKILL, -1, mntns_fd, -1, -1, root_fd, &child); + r = namespace_fork("(sd-mount-tree-ns)", + "(sd-mount-tree)", + /* except_fds= */ NULL, + /* n_except_fds= */ 0, + FORK_RESET_SIGNALS|FORK_DEATHSIG_SIGKILL, + /* pidns_fd= */ -EBADF, + mntns_fd, + /* netns_fd= */ -EBADF, + /* userns_fd= */ -EBADF, + root_fd, + &child); if (r < 0) return log_error_errno(r, "Failed to fork(): %m"); if (r == 0) {