summaryrefslogtreecommitdiffstats
path: root/sys-utils/fallocate.c
diff options
context:
space:
mode:
authorKarel Zak2017-11-29 15:13:24 +0100
committerKarel Zak2017-11-29 15:13:24 +0100
commit09cb6b42c9c4b8bcfea7d18dd481beb6564157b6 (patch)
treeade0037d5cba16ba614469d5c0e8a9b0da2c8e66 /sys-utils/fallocate.c
parentfallocate: dig holes only in data extents (diff)
downloadkernel-qcow2-util-linux-09cb6b42c9c4b8bcfea7d18dd481beb6564157b6.tar.gz
kernel-qcow2-util-linux-09cb6b42c9c4b8bcfea7d18dd481beb6564157b6.tar.xz
kernel-qcow2-util-linux-09cb6b42c9c4b8bcfea7d18dd481beb6564157b6.zip
fallocate: remove typo
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'sys-utils/fallocate.c')
-rw-r--r--sys-utils/fallocate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-utils/fallocate.c b/sys-utils/fallocate.c
index 4c53f8535..c6bed63ef 100644
--- a/sys-utils/fallocate.c
+++ b/sys-utils/fallocate.c
@@ -205,7 +205,7 @@ static void dig_holes(int fd, off_t file_off, off_t len)
buf = xmalloc(bufsz + sizeof(uintptr_t));
while (file_end == 0 || file_off < file_end) {
/*
- * Detect data area (skip exiting holes)
+ * Detect data area (skip holes)
*/
off_t end, off;