Skip to content

Commit

Permalink
use fputs instead of printf - patch by Uwe Ohse
Browse files Browse the repository at this point in the history
  • Loading branch information
nadvornik committed May 26, 2008
1 parent 1f01199 commit 9530a02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui_fileops.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
printf((text_l) ? text_l : text_utf8);
fputs((text_l) ? text_l : text_utf8, stdout);
g_free(text_l);
}

Expand Down

0 comments on commit 9530a02

Please sign in to comment.