From bfffdd37f060d3bd7d23f8912a01241d2f58723f Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 4 Jun 2021 00:02:36 +0200 Subject: [PATCH] LibCpp: Revert change to strace.cpp AST test from bf8fd4c Since the purpose of this file is just to verify the AST generated, we can leave it alone. --- Userland/Libraries/LibCpp/Tests/strace.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibCpp/Tests/strace.cpp b/Userland/Libraries/LibCpp/Tests/strace.cpp index 56fb379e86..9844198f63 100644 --- a/Userland/Libraries/LibCpp/Tests/strace.cpp +++ b/Userland/Libraries/LibCpp/Tests/strace.cpp @@ -48,7 +48,7 @@ int main(int argc, char** argv) int status; if (g_pid == -1) { if (child_argv.is_empty()) { - warnln("strace: Expected either a pid or some arguments"); + outln(stderr, "strace: Expected either a pid or some arguments\n"); return 1; }