mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
Turns this:
r = -errno;
log_error_errno(errno, "foo");
into this:
r = log_error_errno(errno, "foo");
and this:
r = log_error_errno(errno, "foo");
return r;
into this:
return log_error_errno(errno, "foo");