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
This commit is contained in:
Stephan Aßmus 2008-05-14 20:33:53 +00:00
parent 1781abf702
commit 01c52d4f9c

View File

@ -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();
}