]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tmpfiles: drop unnecessary assignment
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Thu, 7 Dec 2023 12:36:24 +0000 (13:36 +0100)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 9 Feb 2024 16:57:41 +0000 (17:57 +0100)
src/tmpfiles/tmpfiles.c

index 5dcdb7e40614195cacd373738fc3aeaf5498cdd4..c174d2b6d5834b8e1dbd56b871731ed5b0bb531f 100644 (file)
@@ -663,8 +663,8 @@ static int dir_cleanup(
                         continue;
                 if (r < 0) {
                         /* FUSE, NFS mounts, SELinux might return EACCES */
-                        r = log_full_errno(r == -EACCES ? LOG_DEBUG : LOG_ERR, r,
-                                           "statx(%s/%s) failed: %m", p, de->d_name);
+                        log_full_errno(r == -EACCES ? LOG_DEBUG : LOG_ERR, r,
+                                       "statx(%s/%s) failed: %m", p, de->d_name);
                         continue;
                 }