mf: 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:09:17 -05:00 committed by Alexandre Julliard
parent 7e226781fa
commit ad9c30a1ad
1 changed files with 1 additions and 0 deletions

View File

@ -72,6 +72,7 @@ static inline const char *debugstr_time(LONGLONG 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);