From 915dc4294db1a25eef3eebdaa2526385a3e5349e Mon Sep 17 00:00:00 2001 From: Markus Hitter Date: Mon, 3 Sep 2012 00:35:53 +0200 Subject: [PATCH] clock.c: silence a compiler warning. --- clock.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clock.c b/clock.c index a14b439..0a5c6a1 100644 --- a/clock.c +++ b/clock.c @@ -22,7 +22,7 @@ called from clock_10ms(), do not call directly */ -static void clock_250ms() { +static void clock_250ms(void) { #ifndef NO_AUTO_IDLE if (temp_all_zero()) { if (psu_timeout > (30 * 4)) { @@ -67,7 +67,7 @@ static void clock_250ms() { called from clock(), do not call directly */ -static void clock_10ms() { +static void clock_10ms(void) { // reset watchdog wd_reset();