summaryrefslogtreecommitdiffstats
path: root/compare/compare.c
diff options
context:
space:
mode:
Diffstat (limited to 'compare/compare.c')
-rw-r--r--compare/compare.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compare/compare.c b/compare/compare.c
index 726e13ce..c47429db 100644
--- a/compare/compare.c
+++ b/compare/compare.c
@@ -304,7 +304,7 @@ static bool process_image(ASS_Renderer *renderer, ASS_Track *track,
unsigned msec = tm % 1000; tm /= 1000;
unsigned sec = tm % 60; tm /= 60;
unsigned min = tm % 60; tm /= 60;
- printf(" Time %u:%02u:%02u.%04u - ", (unsigned) tm, min, sec, msec);
+ printf(" Time %u:%02u:%02u.%03u - ", (unsigned) tm, min, sec, msec);
char path[4096];
snprintf(path, sizeof(path), "%s/%s", input, file);