Mercurial > geeqie
changeset 759:362c9a769bb7
use fputs instead of printf - patch by Uwe Ohse
author | nadvornik |
---|---|
date | Mon, 26 May 2008 18:22:08 +0000 |
parents | a083017752fc |
children | 649b44dd558b |
files | src/ui_fileops.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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); }