summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Bond-Preston <jackbondpreston@outlook.com>2022-07-25 15:17:02 +0100
committerJack Bond-Preston <jackbondpreston@outlook.com>2022-07-25 15:17:02 +0100
commitb07b54868149e5b1465227e6b25b0f07dc4aad71 (patch)
treecfa33601f30ddb3d4370d258235b67d15ababd29
parentb234db74fe3f70254860715cc4bb828a30290fb2 (diff)
downloadSensor-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.h2
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);