From 11f88a78adf4166993eb0c6d08c23b7c2fbcbd24 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 24 Aug 2019 13:34:52 +0200 Subject: [PATCH] Userland: Remove unnecessary output from "rm" --- Userland/rm.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Userland/rm.cpp b/Userland/rm.cpp index 17ee2ca956..0c02aaa925 100644 --- a/Userland/rm.cpp +++ b/Userland/rm.cpp @@ -35,7 +35,6 @@ int remove(bool recursive, const char* path) return s; } } - printf("Removing directory: %s\n", path); int s = rmdir(path); if (s < 0) { perror("rmdir"); @@ -47,7 +46,6 @@ int remove(bool recursive, const char* path) perror("unlink"); return 1; } - printf("Removing file: %s\n", path); } return 0; }