summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/recorder/recording.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index 3696349a6f..cf295db19c 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -130,8 +130,8 @@ static char *create_filename(void)
130 130
131 tm = get_time(); 131 tm = get_time();
132 132
133 /* Create a filename: RYYMMDDHHMMSS.mp3 */ 133 /* Create a filename: RYYMMDD-HHMMSS.mp3 */
134 snprintf(fname, 32, "/R%02d%02d%02d%02d%02d%02d.mp3", 134 snprintf(fname, 32, "/R%02d%02d%02d-%02d%02d%02d.mp3",
135 tm->tm_year%100, tm->tm_mon+1, tm->tm_mday, 135 tm->tm_year%100, tm->tm_mon+1, tm->tm_mday,
136 tm->tm_hour, tm->tm_min, tm->tm_sec); 136 tm->tm_hour, tm->tm_min, tm->tm_sec);
137 137