From: Michal Sekletar Date: Mon, 9 Sep 2024 16:18:35 +0000 (+0200) Subject: coredump: get rid of redundant double space X-Git-Tag: v257-rc1~99^2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4698fd9769592aa249d39f47e674feb8c72b8207;p=thirdparty%2Fsystemd.git coredump: get rid of redundant double space --- diff --git a/src/coredump/coredump.c b/src/coredump/coredump.c index 5b022de2d10..f44aca211f7 100644 --- a/src/coredump/coredump.c +++ b/src/coredump/coredump.c @@ -1671,7 +1671,7 @@ static int gather_pid_mount_tree_fd(const Context *context) { if (socketpair(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC, 0, pair) < 0) return log_error_errno(errno, "Failed to create socket pair: %m"); - r = namespace_open(context->pid, NULL, &mntns_fd, NULL, NULL, &root_fd); + r = namespace_open(context->pid, NULL, &mntns_fd, NULL, NULL, &root_fd); if (r < 0) return log_error_errno(r, "Failed to open mount namespace of crashing process: %m");