From cdbcb7091305152bd19504593d3db2815df31626 Mon Sep 17 00:00:00 2001 From: Mathieu PATUREL Date: Thu, 30 Dec 2021 14:20:44 +1100 Subject: [PATCH] profile: Don't print anything when disabling profiling Just like when enabling profiling. Plus it's more unixy to not print anything on success --- Userland/Utilities/profile.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Utilities/profile.cpp b/Userland/Utilities/profile.cpp index 133db81151..7cbaad1fba 100644 --- a/Userland/Utilities/profile.cpp +++ b/Userland/Utilities/profile.cpp @@ -102,7 +102,6 @@ int main(int argc, char** argv) perror("profiling_disable"); return 1; } - outln("Profiling disabled."); } if (free && profiling_free_buffer(pid) < 0) {