From e00b85b8c033cbe8d6e77730951d692e3e050df0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=BCseyin=20ASLIT=C3=9CRK?= Date: Sat, 25 Apr 2020 12:47:06 +0300 Subject: [PATCH] Userland/ls: Remove unnecessary output --- Userland/ls.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/ls.cpp b/Userland/ls.cpp index b567356fce..25ad7679af 100644 --- a/Userland/ls.cpp +++ b/Userland/ls.cpp @@ -122,7 +122,6 @@ int main(int argc, char** argv) status = do_file_system_object(paths[0]); } else { for (auto& path : paths) { - printf("%s:\n", path); status = do_file_system_object(path); } }