From 50c72655176127c8347fa668091b02d4649320f6 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Fri, 11 Mar 2022 11:40:40 +0000 Subject: [PATCH] dvd-sector-copy.c: Show file ends in the dump. --- dvd-sector-copy.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dvd-sector-copy.c b/dvd-sector-copy.c index 03310a0..f0800c8 100644 --- a/dvd-sector-copy.c +++ b/dvd-sector-copy.c @@ -1174,7 +1174,8 @@ int main(int argc, char *argv[]) for (i = 0; i < filetab.n; i++) { file = &filetab.v[i]; store_filename(fn, file->id); - printf(";;\t%8"PRIuSEC" %s\n", file->start, fn); + printf(";;\t%8"PRIuSEC" .. %-8"PRIuSEC" %s\n", + file->start, file->end, fn); } #endif -- 2.11.0