From: Mark Wooding Date: Fri, 8 Apr 2022 14:47:20 +0000 (+0100) Subject: dvd-sector-copy.c: Fix broken indentation. X-Git-Url: https://git.distorted.org.uk/~mdw/dvdrip/commitdiff_plain/8ed763a58ec8c9f402d2ee30164c59a613afba93?ds=inline;hp=d23998cb71b4c5b65f833893b2c9f6f70f782720 dvd-sector-copy.c: Fix broken indentation. --- diff --git a/dvd-sector-copy.c b/dvd-sector-copy.c index 81de82f..ee89f2a 100644 --- a/dvd-sector-copy.c +++ b/dvd-sector-copy.c @@ -95,8 +95,8 @@ static void put_menu(dvd_reader_t *dvd, unsigned title) store_filename(fn, id); start = UDFFindFile(dvd, fn, &len); if (!start) return; #ifdef DEBUG - printf(";; %8"PRIuSEC" .. %-8"PRIuSEC": %s\n", - start, start + SECTORS(len), fn); + printf(";; %8"PRIuSEC" .. %-8"PRIuSEC": %s\n", + start, start + SECTORS(len), fn); #endif put_file(id, start, start + SECTORS(len)); } @@ -487,9 +487,9 @@ static ssize_t recovery_read_buffer(struct recoverybuf *r, #endif } } else if (pos > r->pos + r->end) { - r->pos = pos; r->start = r->end = 0; + r->pos = pos; r->start = r->end = 0; #ifdef DEBUG - show_recovery_buffer_map(r, "cleared; beyond previous region"); + show_recovery_buffer_map(r, "cleared; beyond previous region"); #endif } else if (pos + want > r->pos + r->sz) { diff = (pos + want) - (r->pos + r->sz);