From 357a39453d9d6077d8d62cf1714ec27276165070 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sat, 9 Apr 2022 17:43:54 +0100 Subject: [PATCH 1/1] dvd-sector-copy.c: Reformat an overly-long line. --- dvd-sector-copy.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dvd-sector-copy.c b/dvd-sector-copy.c index 06d3e55..9186d72 100644 --- a/dvd-sector-copy.c +++ b/dvd-sector-copy.c @@ -994,8 +994,10 @@ int main(int argc, char *argv[]) if (parse_range(p, 0, &start, &end) || (last <= SECLIMIT && start < last)) bail("bad range `%s' at `%s' line %zu", buf.p, optarg, i); - if (start < end) - { VEC_PUSH(bad, &badblocks); bad->start = start; bad->end = end; } + if (start < end) { + VEC_PUSH(bad, &badblocks); + bad->start = start; bad->end = end; + } } if (ferror(fp)) bail_syserr(errno, "failed to read bad-blocks file `%s'", optarg); -- 2.11.0