strmbase: Strip trailing zeroes in debugstr_time().

Signed-off-by: Zebediah Figura <zfigura@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zebediah Figura 2020-03-26 12:08:46 -05:00 committed by Alexandre Julliard
parent c713b2958f
commit 7e226781fa

View file

@ -47,6 +47,7 @@ static inline const char *debugstr_time(REFERENCE_TIME time)
if (time < 0) buffer[i++] = '-';
while (i--) rev[j++] = buffer[i];
while (rev[j-1] == '0' && rev[j-2] != '.') --j;
rev[j] = 0;
return wine_dbg_sprintf("%s", rev);