From: Zbigniew Jędrzejewski-Szmek Date: Thu, 7 Dec 2023 12:36:24 +0000 (+0100) Subject: tmpfiles: drop unnecessary assignment X-Git-Tag: v256-rc1~887^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db6873bfebf4b95e607b90d6947cfbdf92370353;p=thirdparty%2Fsystemd.git tmpfiles: drop unnecessary assignment --- diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index 5dcdb7e4061..c174d2b6d58 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -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; }