udev: fix error code in the log message

This commit is contained in:
Yu Watanabe 2019-11-12 14:58:19 +09:00
parent 4b613ec212
commit ffdc9c891f
1 changed files with 1 additions and 2 deletions

View File

@ -2336,8 +2336,7 @@ static int apply_static_dev_perms(const char *devnode, uid_t uid, gid_t gid, mod
if (r == -ENOENT)
return 0;
if (r < 0)
return log_error_errno(errno, "Failed to chown '%s' %u %u: %m",
device_node, uid, gid);
return log_error_errno(r, "Failed to chown '%s' %u %u: %m", device_node, uid, gid);
else
log_debug("chown '%s' %u:%u with mode %#o", device_node, uid, gid, mode);