From 01c52d4f9c7f8b0500bbc161ee062bc976360a4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Wed, 14 May 2008 20:33:53 +0000 Subject: [PATCH] Print the error message to stdout, since that is where the message->PrintToStream() output goes. Thanks, Jerome, for the suggestion! git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25500 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/app/Application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kits/app/Application.cpp b/src/kits/app/Application.cpp index 378eb4db88..a523572057 100644 --- a/src/kits/app/Application.cpp +++ b/src/kits/app/Application.cpp @@ -1448,7 +1448,7 @@ BApplication::_ArgvReceived(BMessage *message) ArgvReceived(argc, argv); if (error != B_OK) { - fprintf(stderr, "Error parsing B_ARGV_RECEIVED message. Message:\n"); + printf("Error parsing B_ARGV_RECEIVED message. Message:\n"); message->PrintToStream(); }