diff options
author | Jack Bond-Preston <jackbondpreston@outlook.com> | 2022-07-25 15:17:02 +0100 |
---|---|---|
committer | Jack Bond-Preston <jackbondpreston@outlook.com> | 2022-07-25 15:17:02 +0100 |
commit | b07b54868149e5b1465227e6b25b0f07dc4aad71 (patch) | |
tree | cfa33601f30ddb3d4370d258235b67d15ababd29 | |
parent | b234db74fe3f70254860715cc4bb828a30290fb2 (diff) | |
download | Sensor-Watch-b07b54868149e5b1465227e6b25b0f07dc4aad71.tar.gz Sensor-Watch-b07b54868149e5b1465227e6b25b0f07dc4aad71.tar.bz2 Sensor-Watch-b07b54868149e5b1465227e6b25b0f07dc4aad71.zip |
movement: fix movement_request_wake() prototype
This function has `void` args, currently it can throw a compiler warning
-rw-r--r-- | movement/movement.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/movement/movement.h b/movement/movement.h index 255db057..0442f607 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); |