From 072ebe3ece6e52e74f544c67bce6df80608db0d1 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Mon, 31 Mar 2025 21:26:57 +0900 Subject: [PATCH] watchdog: fix typo Follow-up for ab596e4cde5d4b55be5182a8d5554e3e97366131. --- src/shared/watchdog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/watchdog.c b/src/shared/watchdog.c index 5b3f950b80e..0da142b51ae 100644 --- a/src/shared/watchdog.c +++ b/src/shared/watchdog.c @@ -229,7 +229,7 @@ static int watchdog_ping_now(void) { watchdog_last_good_ping = now(CLOCK_BOOTTIME); if (watchdog_bad_pings > 0) { log_struct(LOG_INFO, - LOG_MESSAGE("Succesfullly pinged hardware watchdog %s after %u attempts: %m", + LOG_MESSAGE("Successfully pinged hardware watchdog %s after %u attempts: %m", watchdog_device, watchdog_bad_pings + 1), "WATCHDOG_DEVICE=%s", watchdog_device); watchdog_bad_pings = 0; -- 2.47.3