1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-12-24 21:34:08 +03:00

watchdog: fix error code handling

This commit is contained in:
Lennart Poettering 2021-10-18 11:17:11 +02:00
parent e1df968b33
commit a73b7b1b0e

View File

@ -107,7 +107,7 @@ static int update_timeout(void) {
if (watchdog_timeout == USEC_INFINITY) { if (watchdog_timeout == USEC_INFINITY) {
r = watchdog_get_timeout(); r = watchdog_get_timeout();
if (r < 0) if (r < 0)
return log_error_errno(errno, "Failed to query watchdog HW timeout: %m"); return log_error_errno(r, "Failed to query watchdog HW timeout: %m");
} }
r = watchdog_set_enable(true); r = watchdog_set_enable(true);