aboutsummaryrefslogtreecommitdiff
path: root/omar.c
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-04-29 00:43:25 -0400
committerIan Moffett <ian@osmora.org>2025-04-29 00:43:35 -0400
commit4a87323344ef93106c4ca6797495f5804631bc77 (patch)
tree4647ed993349d2b919e28171af38006dc75fd5b7 /omar.c
parentc6ea0f952a4a10e46551ddb82abcf36bcd1093c5 (diff)
style: Fix comment width
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'omar.c')
-rw-r--r--omar.c7
1 files 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);