]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
coredump: get rid of redundant double space
authorMichal Sekletar <msekleta@redhat.com>
Mon, 9 Sep 2024 16:18:35 +0000 (18:18 +0200)
committerLuca Boccassi <luca.boccassi@gmail.com>
Wed, 30 Oct 2024 12:20:40 +0000 (12:20 +0000)
src/coredump/coredump.c

index 5b022de2d10ad527b2377e531fb66d9b05b2973b..f44aca211f76ad7f0f9a6e5bc7dd61353403edfc 100644 (file)
@@ -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");