aboutsummaryrefslogtreecommitdiffstats
path: root/src/sched.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sched.h')
-rw-r--r--src/sched.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sched.h b/src/sched.h
index be73ce65..aabb17b0 100644
--- a/src/sched.h
+++ b/src/sched.h
@@ -15,7 +15,7 @@
// Timer structure for scheduling timed events (see sched_timer() )
struct timer {
struct timer *next;
- uint8_t (*func)(struct timer*);
+ uint_fast8_t (*func)(struct timer*);
uint32_t waketime;
};