From e60c0d675e5c2fe2e43b05ded02f4616bdcaae9d Mon Sep 17 00:00:00 2001 From: SViN24 <51864332+SViN24@users.noreply.github.com> Date: Tue, 11 May 2021 10:56:28 +0300 Subject: [PATCH] strace: Write output to stderr instead of stdout (#7016) Fixes #7014. --- Userland/Utilities/strace.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Utilities/strace.cpp b/Userland/Utilities/strace.cpp index 545d937da6..9bd167dde1 100644 --- a/Userland/Utilities/strace.cpp +++ b/Userland/Utilities/strace.cpp @@ -40,7 +40,7 @@ int main(int argc, char** argv) Vector child_argv; const char* output_filename = nullptr; - auto trace_file = Core::File::standard_output(); + auto trace_file = Core::File::standard_error(); Core::ArgsParser parser; parser.set_general_help(