diff src/ui_fileops.c @ 759:362c9a769bb7

use fputs instead of printf - patch by Uwe Ohse
author nadvornik
date Mon, 26 May 2008 18:22:08 +0000
parents 839525c4e85f
children 3a939c88305c
line wrap: on
line diff
--- a/src/ui_fileops.c	Mon May 26 17:06:30 2008 +0000
+++ b/src/ui_fileops.c	Mon May 26 18:22:08 2008 +0000
@@ -44,7 +44,7 @@
 	gchar *text_l;
 
 	text_l = g_locale_from_utf8(text_utf8, -1, NULL, NULL, NULL);
-	printf((text_l) ? text_l : text_utf8);
+	fputs((text_l) ? text_l : text_utf8, stdout);
 	g_free(text_l);
 }