mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
flvmux: fix writing of creation time
Don't write time as e.g. 11:9:42
This commit is contained in:
parent
539ebd0f42
commit
5413fd5f20
1 changed files with 1 additions and 1 deletions
|
@ -977,7 +977,7 @@ tags:
|
|||
secs = tv.tv_sec;
|
||||
tm = gmtime (&secs);
|
||||
|
||||
s = g_strdup_printf ("%s %s %d %d:%d:%d %d", weekdays[tm->tm_wday],
|
||||
s = g_strdup_printf ("%s %s %d %02d:%02d:%02d %d", weekdays[tm->tm_wday],
|
||||
months[tm->tm_mon], tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec,
|
||||
tm->tm_year + 1900);
|
||||
|
||||
|
|
Loading…
Reference in a new issue