aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);