From 5278c2e2ea479d594c84eb88c3c174eab2be5e3f Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Mon, 12 Apr 2021 14:19:31 +0200 Subject: [PATCH] Print all errors on the Wine side to STDERR This one was using STDOUT for some reason --- src/wine-host/editor.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wine-host/editor.cpp b/src/wine-host/editor.cpp index 8c604439..a556b932 100644 --- a/src/wine-host/editor.cpp +++ b/src/wine-host/editor.cpp @@ -203,11 +203,11 @@ Editor::Editor(MainContext& main_context, active_window_property = atom_reply->atom; free(atom_reply); if (!supports_ewmh_active_window()) { - std::cout << "WARNING: The current window manager does not support the" + std::cerr << "WARNING: The current window manager does not support the" << std::endl; - std::cout << " '" << active_window_property_name + std::cerr << " '" << active_window_property_name << "' property. Falling back to a" << std::endl; - std::cout << " less reliable keyboard input grabbing method." + std::cerr << " less reliable keyboard input grabbing method." << std::endl; }