summaryrefslogtreecommitdiffstats
path: root/movement/watch_faces/complications/sunrise_sunset_face.h
diff options
context:
space:
mode:
Diffstat (limited to 'movement/watch_faces/complications/sunrise_sunset_face.h')
-rw-r--r--movement/watch_faces/complications/sunrise_sunset_face.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/movement/watch_faces/complications/sunrise_sunset_face.h b/movement/watch_faces/complications/sunrise_sunset_face.h
index 196b9db0..826d5e95 100644
--- a/movement/watch_faces/complications/sunrise_sunset_face.h
+++ b/movement/watch_faces/complications/sunrise_sunset_face.h
@@ -52,12 +52,12 @@ void sunrise_sunset_face_activate(movement_settings_t *settings, void *context);
bool sunrise_sunset_face_loop(movement_event_t event, movement_settings_t *settings, void *context);
void sunrise_sunset_face_resign(movement_settings_t *settings, void *context);
-static const watch_face_t sunrise_sunset_face = {
- sunrise_sunset_face_setup,
- sunrise_sunset_face_activate,
- sunrise_sunset_face_loop,
- sunrise_sunset_face_resign,
- NULL
-};
+#define sunrise_sunset_face ((const watch_face_t){ \
+ sunrise_sunset_face_setup, \
+ sunrise_sunset_face_activate, \
+ sunrise_sunset_face_loop, \
+ sunrise_sunset_face_resign, \
+ NULL, \
+})
#endif // SUNRISE_SUNSET_FACE_H_