From 4a87323344ef93106c4ca6797495f5804631bc77 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Tue, 29 Apr 2025 00:43:25 -0400 Subject: style: Fix comment width Signed-off-by: Ian Moffett --- omar.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/omar.c b/omar.c index 37e9bb7..3244415 100644 --- a/omar.c +++ b/omar.c @@ -147,10 +147,9 @@ file_push(const char *pathname, const char *name) } /* - * Write the actual file contents, if - * the file length is not a multiple - * of the block size, we'll need to - * pad out the rest to zero + * Write the actual file contents, if the file length is not + * a multiple of the block size, we'll need to pad out the rest + * to zero. */ write(outfd, buf, hdr.len); rem = hdr.len & (BLOCK_SIZE - 1); -- cgit v1.2.3