From: Lennart Poettering Date: Sat, 4 Apr 2026 06:17:29 +0000 (+0200) Subject: iso9660: line break overly long parameter list X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=56245fe67fd1779dc83a20dd3850a8020fefeffa;p=thirdparty%2Fsystemd.git iso9660: line break overly long parameter list --- diff --git a/src/repart/repart.c b/src/repart/repart.c index ecd0518530f..9ed4815aee9 100644 --- a/src/repart/repart.c +++ b/src/repart/repart.c @@ -7920,7 +7920,12 @@ static int write_boot_catalog(int fd, uint32_t load_block) { return 0; } -static int write_directories(int fd, usec_t usec, bool utc, uint32_t root_sector) { +static int write_directories( + int fd, + usec_t usec, + bool utc, + uint32_t root_sector) { + int r; assert(fd >= 0); @@ -7978,7 +7983,15 @@ static int write_directories(int fd, usec_t usec, bool utc, uint32_t root_sector return 0; } -static int write_eltorito(int fd, usec_t usec, bool utc, uint32_t load_block, const char *system_id, const char *volume_id, const char *publisher_id) { +static int write_eltorito( + int fd, + usec_t usec, + bool utc, + uint32_t load_block, /* in iso9660 blocks */ + const char *system_id, + const char *volume_id, + const char *publisher_id) { + int r; assert(fd >= 0);