# HG changeset patch # User nadvornik # Date 1211826128 0 # Node ID 362c9a769bb7d24fb6e31495b39e11e87af9be51 # Parent a083017752fc412b1b7b3ff8f184994785f7c020 use fputs instead of printf - patch by Uwe Ohse diff -r a083017752fc -r 362c9a769bb7 src/ui_fileops.c --- 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); }