summaryrefslogtreecommitdiff
path: root/firmware/libc/gmtime.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/libc/gmtime.c')
-rw-r--r--firmware/libc/gmtime.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/firmware/libc/gmtime.c b/firmware/libc/gmtime.c
index e7ebdf0d90..c5deb593cd 100644
--- a/firmware/libc/gmtime.c
+++ b/firmware/libc/gmtime.c
@@ -108,6 +108,9 @@ struct tm *gmtime_r(const time_t *timep, struct tm *tm)
108 /* Second */ 108 /* Second */
109 tm->tm_sec = seconds; 109 tm->tm_sec = seconds;
110 110
111 tm->tm_yday = 0; /* Not implemented for now */
112 tm->tm_isdst = -1; /* Not implemented for now */
113
111 return tm; 114 return tm;
112} 115}
113 116