summaryrefslogtreecommitdiff
path: root/src/drivers/ao_watchdog.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers/ao_watchdog.c')
-rw-r--r--src/drivers/ao_watchdog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/ao_watchdog.c b/src/drivers/ao_watchdog.c
index 01c3cd0e..c0582c12 100644
--- a/src/drivers/ao_watchdog.c
+++ b/src/drivers/ao_watchdog.c
@@ -38,9 +38,9 @@ ao_watchdog(void)
static void
ao_watchdog_set(void)
{
- ao_cmd_hex();
+ uint32_t r = ao_cmd_hex();
if (ao_cmd_status == ao_cmd_success) {
- ao_watchdog_enabled = ao_cmd_lex_i != 0;
+ ao_watchdog_enabled = r != 0;
ao_wakeup(&ao_watchdog_enabled);
}
}