summaryrefslogtreecommitdiff
path: root/Userland/Utilities
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-06-03 22:49:37 +0200
committerAndreas Kling <kling@serenityos.org>2021-06-03 22:50:21 +0200
commitbf8fd4c1931e9bfa72a3c05dec3de72ea95871d3 (patch)
treeacaa6a9ee59e7541438437c32f0ff497e98966c0 /Userland/Utilities
parent43e7181ec8a0152a046db0ad3e2915c4a2f69e70 (diff)
downloadserenity-bf8fd4c1931e9bfa72a3c05dec3de72ea95871d3.zip
Everywhere: Remove accidental '\n' from various outln() invocations
Also convert outln(stderr, ...) to warnln(...)
Diffstat (limited to 'Userland/Utilities')
-rw-r--r--Userland/Utilities/strace.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/strace.cpp b/Userland/Utilities/strace.cpp
index b70d1e5668..ee6bf1b752 100644
--- a/Userland/Utilities/strace.cpp
+++ b/Userland/Utilities/strace.cpp
@@ -68,7 +68,7 @@ int main(int argc, char** argv)
int status;
if (g_pid == -1) {
if (child_argv.is_empty()) {
- outln(stderr, "strace: Expected either a pid or some arguments\n");
+ warnln("strace: Expected either a pid or some arguments");
return 1;
}