Browse Source

strace: Write output to stderr instead of stdout (#7016)

Fixes #7014.
SViN24 4 years ago
parent
commit
e60c0d675e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Userland/Utilities/strace.cpp

+ 1 - 1
Userland/Utilities/strace.cpp

@@ -40,7 +40,7 @@ int main(int argc, char** argv)
     Vector<const char*> 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(