From: Mark Wooding Date: Sat, 9 Apr 2022 16:43:54 +0000 (+0100) Subject: dvd-sector-copy.c: Reformat an overly-long line. X-Git-Url: https://git.distorted.org.uk/~mdw/dvdrip/commitdiff_plain/357a39453d9d6077d8d62cf1714ec27276165070?hp=1315a4f7deb75ecaea256209ce9c24761fc82b66 dvd-sector-copy.c: Reformat an overly-long line. --- 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);