diff --git a/Userland/Utilities/mount.cpp b/Userland/Utilities/mount.cpp index a4021b2fdd..0425aef44f 100644 --- a/Userland/Utilities/mount.cpp +++ b/Userland/Utilities/mount.cpp @@ -172,8 +172,10 @@ ErrorOr serenity_main(Main::Arguments arguments) return 0; } - if (source.is_empty() && mountpoint.is_empty()) + if (source.is_empty() && mountpoint.is_empty()) { TRY(print_mounts()); + return 0; + } if (!source.is_empty() && !mountpoint.is_empty()) { if (fs_type.is_empty())