diff options
author | joeycastillo <joeycastillo@utexas.edu> | 2022-07-25 12:06:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-25 12:06:05 -0400 |
commit | 6d87f5a6268a9a516d8c577dfd71b39a5bfc384a (patch) | |
tree | 0ed0307faa8996c0e24f7e4fa3827f71c91f4db9 | |
parent | f120d66a98cac17fd69169500e148ffbc6eccd69 (diff) | |
parent | b07b54868149e5b1465227e6b25b0f07dc4aad71 (diff) | |
download | Sensor-Watch-6d87f5a6268a9a516d8c577dfd71b39a5bfc384a.tar.gz Sensor-Watch-6d87f5a6268a9a516d8c577dfd71b39a5bfc384a.tar.bz2 Sensor-Watch-6d87f5a6268a9a516d8c577dfd71b39a5bfc384a.zip |
Merge pull request #79 from jackbondpreston/main
movement: fix movement_request_wake() prototype
-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); |