clock.c: silence a compiler warning.
This commit is contained in:
parent
47337f1213
commit
915dc4294d
4
clock.c
4
clock.c
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
called from clock_10ms(), do not call directly
|
called from clock_10ms(), do not call directly
|
||||||
*/
|
*/
|
||||||
static void clock_250ms() {
|
static void clock_250ms(void) {
|
||||||
#ifndef NO_AUTO_IDLE
|
#ifndef NO_AUTO_IDLE
|
||||||
if (temp_all_zero()) {
|
if (temp_all_zero()) {
|
||||||
if (psu_timeout > (30 * 4)) {
|
if (psu_timeout > (30 * 4)) {
|
||||||
|
|
@ -67,7 +67,7 @@ static void clock_250ms() {
|
||||||
|
|
||||||
called from clock(), do not call directly
|
called from clock(), do not call directly
|
||||||
*/
|
*/
|
||||||
static void clock_10ms() {
|
static void clock_10ms(void) {
|
||||||
// reset watchdog
|
// reset watchdog
|
||||||
wd_reset();
|
wd_reset();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue