X-Git-Url: https://git.distorted.org.uk/~mdw/dvdrip/blobdiff_plain/410341025e517d40adc6e2efe122873a8b2c3657..50c72655176127c8347fa668091b02d4649320f6:/dvd-sector-copy.c diff --git a/dvd-sector-copy.c b/dvd-sector-copy.c index fe8da21..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 @@ -1186,7 +1187,8 @@ int main(int argc, char *argv[]) switch (ev->ev) { case EV_WRITE: if (f&f_write) - bail("overlapping ranges: range from %"PRIuSEC" still open at %"PRIuSEC"", + bail("overlapping ranges: range from %"PRIuSEC" " + "still open at %"PRIuSEC"", start, ev->pos); f |= f_write; start = ev->pos; break;