1
0
Fork 0
forked from len0rd/rockbox

Fix yellow & red

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21107 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Maurus Cuelenaere 2009-05-27 23:02:17 +00:00
parent b2581e143d
commit 1e980cd977
2 changed files with 9 additions and 1 deletions

View file

@ -80,7 +80,13 @@ again:
case 'U': no = (tm->tm_yday - tm->tm_wday + 7) / 7; goto _no;
case 'W': no = (tm->tm_yday - (tm->tm_wday - 1 + 7) % 7 + 7) / 7; goto _no;
case 's': {
time_t t = rb->mktime((struct tm*)tm);
time_t t =
#if CONFIG_RTC
rb->mktime((struct tm*)tm)
#else
0
#endif
;
char buf[101];
char* c;
buf[100]=0;