write info and debugging messages to stderr
authorVladimir Nadvornik <nadvornik@suse.cz>
Mon, 20 Apr 2009 21:07:52 +0000 (21:07 +0000)
committerVladimir Nadvornik <nadvornik@suse.cz>
Mon, 20 Apr 2009 21:07:52 +0000 (21:07 +0000)
src/ui_fileops.c

index 3564cfd..cba37ab 100644 (file)
@@ -44,7 +44,7 @@ void print_term(const gchar *text_utf8)
        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);
 }