clock.c: silence a compiler warning.

This commit is contained in:
Markus Hitter 2012-09-03 00:35:53 +02:00
parent 47337f1213
commit 915dc4294d
1 changed files with 2 additions and 2 deletions

View File

@ -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();