Signed-off-by: Alexander Shiyan <shc_w...@mail.ru>
---
 commands/umount.c | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/commands/umount.c b/commands/umount.c
index e6de1bc..f0f9fce 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[] =
-- 
1.8.3.2


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

Reply via email to