From 868dfe31527cd1d36d1d63cd13699ae7ee8f3c1a Mon Sep 17 00:00:00 2001 From: Dan Werthimer Date: Thu, 19 Jun 2003 17:47:15 +0000 Subject: [PATCH] no message svn path=/trunk/boinc/; revision=1546 --- client/win/wingui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/win/wingui.cpp b/client/win/wingui.cpp index 93ff24986b..5ee78ab6e5 100755 --- a/client/win/wingui.cpp +++ b/client/win/wingui.cpp @@ -40,9 +40,9 @@ void show_message(PROJECT* p, char* msg, int priority) { g_myWnd->MessageUser(x, message, priority); } if (priority == MSG_INFO) - fprintf(stderr, "%s: %s (priority: low)\n", x, message); + fprintf(stdout, "%s: %s\n", x, message); else - fprintf(stderr, "%s: %s (priority: high)\n", x, message); + fprintf(stderr, "%s: %s\n", x, message); } int add_new_project() {