From: Jack Bond-Preston Date: Mon, 25 Jul 2022 14:17:02 +0000 (+0100) Subject: movement: fix movement_request_wake() prototype X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=b07b54868149e5b1465227e6b25b0f07dc4aad71;p=sensor-watch.git movement: fix movement_request_wake() prototype This function has `void` args, currently it can throw a compiler warning --- diff --git a/movement/movement.h b/movement/movement.h index 255db05..0442f60 100644 --- a/movement/movement.h +++ b/movement/movement.h @@ -288,7 +288,7 @@ void movement_schedule_background_task(watch_date_time date_time); // movement will associate the scheduled task with the currently active face. void movement_cancel_background_task(void); -void movement_request_wake(); +void movement_request_wake(void); void movement_play_signal(void); void movement_play_alarm(void);