diff options
author | Ian Moffett <ian@osmora.org> | 2025-04-29 00:43:25 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-04-29 00:43:35 -0400 |
commit | 4a87323344ef93106c4ca6797495f5804631bc77 (patch) | |
tree | 4647ed993349d2b919e28171af38006dc75fd5b7 /omar.c | |
parent | c6ea0f952a4a10e46551ddb82abcf36bcd1093c5 (diff) |
style: Fix comment width
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'omar.c')
-rw-r--r-- | omar.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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); |