1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2024-06-09 06:10:42 +00:00

Increase getTimeString static buffer

This commit is contained in:
Moritz Grimm 2018-01-18 11:42:37 +01:00
parent 0b260b3c08
commit d0cf1d8bbd

View File

@ -380,7 +380,7 @@ reconnect(stream_t stream)
const char *
getTimeString(long seconds)
{
static char str[20];
static char str[25];
long secs, mins, hours;
if (seconds < 0)