tmpfiles: drop unnecessary assignment

This commit is contained in:
Zbigniew Jędrzejewski-Szmek
2023-12-07 13:36:24 +01:00
parent 9c8a0ca69e
commit db6873bfeb

View 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;
}