]> git.earman.xyz Git - sensor-watch.git/commitdiff
movement: fix movement_request_wake() prototype
authorJack Bond-Preston <jackbondpreston@outlook.com>
Mon, 25 Jul 2022 14:17:02 +0000 (15:17 +0100)
committerJack Bond-Preston <jackbondpreston@outlook.com>
Mon, 25 Jul 2022 14:17:02 +0000 (15:17 +0100)
This function has `void` args, currently it can throw a compiler warning

movement/movement.h

index 255db0571fe002731d52c849a5448666bfab0dd9..0442f6075bda3b8581b4ab72c1a615e24e317aa1 100644 (file)
@@ -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);