summaryrefslogtreecommitdiffstats
path: root/sys-utils/fstrim.c
diff options
context:
space:
mode:
authorBenno Schulenberg2013-12-11 12:40:14 +0100
committerKarel Zak2013-12-12 11:10:53 +0100
commitd6bbe8044b21dca000fe49fdee4260c2e84d1df9 (patch)
tree3ce9c6a2192065f26121fd72d857918816760732 /sys-utils/fstrim.c
parentfstrim: de-duplicate list of filesystems (diff)
downloadkernel-qcow2-util-linux-d6bbe8044b21dca000fe49fdee4260c2e84d1df9.tar.gz
kernel-qcow2-util-linux-d6bbe8044b21dca000fe49fdee4260c2e84d1df9.tar.xz
kernel-qcow2-util-linux-d6bbe8044b21dca000fe49fdee4260c2e84d1df9.zip
textual: small inprovements to usage and man page of fstrim
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Diffstat (limited to 'sys-utils/fstrim.c')
-rw-r--r--sys-utils/fstrim.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys-utils/fstrim.c b/sys-utils/fstrim.c
index f58b6d4c3..c51c7a804 100644
--- a/sys-utils/fstrim.c
+++ b/sys-utils/fstrim.c
@@ -229,10 +229,10 @@ static void __attribute__((__noreturn__)) usage(FILE *out)
fprintf(out,
_(" %s [options] <mount point>\n"), program_invocation_short_name);
fputs(USAGE_OPTIONS, out);
- fputs(_(" -a, --all discard all mounted supported filesystems\n"), out);
- fputs(_(" -o, --offset <num> offset in bytes to discard from\n"), out);
- fputs(_(" -l, --length <num> length of bytes to discard from the offset\n"), out);
- fputs(_(" -m, --minimum <num> minimum extent length to discard\n"), out);
+ fputs(_(" -a, --all trim all mounted filesystems that are supported\n"), out);
+ fputs(_(" -o, --offset <num> the offset in bytes to start discarding from\n"), out);
+ fputs(_(" -l, --length <num> the number of bytes to discard\n"), out);
+ fputs(_(" -m, --minimum <num> the minimum extent length to discard\n"), out);
fputs(_(" -v, --verbose print number of discarded bytes\n"), out);
fputs(USAGE_SEPARATOR, out);