aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2013-11-10 00:02:43 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2013-11-10 00:02:43 +0100
commitb1489f97e0670fed7d450bae86a3aae38bc9156b (patch)
tree4fd2e63c5298813161f54b7e0c4658cd10777dd9 /util-linux
parent140f4e351191d8633fd5bd6dcf38cdcccc1f07cb (diff)
downloadbusybox-b1489f97e0670fed7d450bae86a3aae38bc9156b.tar.gz
fstrim: Indicate failure on error
+14b Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/fstrim.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/util-linux/fstrim.c b/util-linux/fstrim.c
index 00140b340..84a641022 100644
--- a/util-linux/fstrim.c
+++ b/util-linux/fstrim.c
@@ -103,6 +103,7 @@ int fstrim_main(int argc UNUSED_PARAM, char **argv)
if (opts & OPT_v)
printf("%s: %llu bytes were trimmed\n", bd, range.len);
+ return EXIT_SUCCESS;
}
- return EXIT_SUCCESS;
+ return EXIT_FAILURE;
}