summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-rw-r--r--commands/umount.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/commands/umount.c b/commands/umount.c
index e6de1bc8ff..f0f9fcee2b 100644
--- a/commands/umount.c
+++ b/commands/umount.c
@@ -23,16 +23,10 @@
static int do_umount(int argc, char *argv[])
{
- int ret = 0;
-
if (argc != 2)
return COMMAND_ERROR_USAGE;
- if ((ret = umount(argv[1]))) {
- perror("umount");
- return 1;
- }
- return 0;
+ return umount(argv[1]);
}
static const __maybe_unused char cmd_umount_help[] =