diff src/ui_fileops.c @ 1555:70f94d61b1aa

write info and debugging messages to stderr
author nadvornik
date Mon, 20 Apr 2009 21:07:52 +0000
parents 89dedc61b1bd
children ceafe3731568
line wrap: on
line diff
--- a/src/ui_fileops.c	Mon Apr 20 19:44:50 2009 +0000
+++ b/src/ui_fileops.c	Mon Apr 20 21:07:52 2009 +0000
@@ -44,7 +44,7 @@
 	gchar *text_l;
 
 	text_l = g_locale_from_utf8(text_utf8, -1, NULL, NULL, NULL);
-	fputs((text_l) ? text_l : text_utf8, stdout);
+	fputs((text_l) ? text_l : text_utf8, stderr);
 	g_free(text_l);
 }