aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/pwmcmds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pwmcmds.c b/src/pwmcmds.c
index 4709a91e..82326b9d 100644
--- a/src/pwmcmds.c
+++ b/src/pwmcmds.c
@@ -16,13 +16,13 @@ struct pwm_out_s {
uint8_t value, default_value;
};
-static uint8_t
+static uint_fast8_t
pwm_end_event(struct timer *timer)
{
shutdown("Missed scheduling of next hard pwm event");
}
-static uint8_t
+static uint_fast8_t
pwm_event(struct timer *timer)
{
struct pwm_out_s *p = container_of(timer, struct pwm_out_s, timer);