summaryrefslogtreecommitdiff
path: root/apps/recorder
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder')
-rw-r--r--apps/recorder/icons.h2
-rw-r--r--apps/recorder/recording.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h
index 7b1d69de1b..7682d44733 100644
--- a/apps/recorder/icons.h
+++ b/apps/recorder/icons.h
@@ -177,7 +177,7 @@ extern void statusbar_icon_play_state(int state);
177extern void statusbar_icon_play_mode(int mode); 177extern void statusbar_icon_play_mode(int mode);
178extern void statusbar_icon_shuffle(void); 178extern void statusbar_icon_shuffle(void);
179extern void statusbar_icon_lock(void); 179extern void statusbar_icon_lock(void);
180#ifdef CONFIG_RTC 180#if CONFIG_RTC
181extern void statusbar_time(int hour, int minute); 181extern void statusbar_time(int hour, int minute);
182#endif 182#endif
183#if (CONFIG_LED == LED_VIRTUAL) 183#if (CONFIG_LED == LED_VIRTUAL)
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index ffde856612..025480cf91 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -518,7 +518,7 @@ char *rec_create_filename(char *buffer)
518 snprintf(ext, sizeof(ext), ".%s", 518 snprintf(ext, sizeof(ext), ".%s",
519 REC_FILE_ENDING(global_settings.rec_format)); 519 REC_FILE_ENDING(global_settings.rec_format));
520 520
521#ifdef CONFIG_RTC 521#if CONFIG_RTC
522 /* We'll wait at least up to the start of the next second so no duplicate 522 /* We'll wait at least up to the start of the next second so no duplicate
523 names are created */ 523 names are created */
524 return create_datetime_filename(buffer, buffer, "R", ext, true); 524 return create_datetime_filename(buffer, buffer, "R", ext, true);