From 8009237e7cee6eff2a6a687691a11344851cd864 Mon Sep 17 00:00:00 2001 From: Joachim Eibl Date: Wed, 23 Oct 2013 11:48:13 +0200 Subject: [PATCH] Write --confighelp information to stdout instead of stderr. Signed-off-by: joachim99 --- src/kdiff3.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/kdiff3.cpp b/src/kdiff3.cpp index c5ba8aa..6b59405 100644 --- a/src/kdiff3.cpp +++ b/src/kdiff3.cpp @@ -181,8 +181,8 @@ KDiff3App::KDiff3App( QWidget* pParent, const char* /*name*/, KDiff3Part* pKDiff pDialog->exec(); #if !defined(_WIN32) && !defined(Q_OS_OS2) // A windows program has no console - fprintf( stderr, "%s\n", title.toLatin1().constData() ); - fprintf( stderr, "%s\n", s.toLatin1().constData() ); + fprintf( "%s\n", title.toLatin1().constData() ); + fprintf( "%s\n", s.toLatin1().constData() ); #endif exit( 1 ); } -- GitLab