From: Hans Dedecker Date: Tue, 8 Aug 2017 07:49:26 +0000 (+0200) Subject: watchdog: fix inline watchdog_get_magicclose function prototype X-Git-Url: http://git.openwrt.org/?p=project%2Fprocd.git;a=commitdiff_plain;h=66be6a23d71fcc068d6b813f0e0be2f8f0b6aa88 watchdog: fix inline watchdog_get_magicclose function prototype Fix procd compilation issue which occurs when DISABLE_INIT is set as the inline watchdog_get_magicclose function prototype was wrong. Signed-off-by: Hans Dedecker --- diff --git a/watchdog.h b/watchdog.h index d63343c..466818f 100644 --- a/watchdog.h +++ b/watchdog.h @@ -50,8 +50,9 @@ static inline void watchdog_set_magicclose(bool val) { } -static inline void watchdog_get_magicclose(bool val) +static inline bool watchdog_get_magicclose(void) { + return false; } static inline void watchdog_set_stopped(bool val)