aboutsummaryrefslogtreecommitdiff
path: root/uxd.c
diff options
context:
space:
mode:
Diffstat (limited to 'uxd.c')
-rw-r--r--uxd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/uxd.c b/uxd.c
index 5775ef4..7f518e0 100644
--- a/uxd.c
+++ b/uxd.c
@@ -887,7 +887,7 @@ int main(int argc, char **argv) {
parse_options(argc, argv);
if(term_utf8) /* -t, -T */
- puts(ESC_UTF8_ON);
+ fputs(ESC_UTF8_ON, stdout);
if(dump_data_arg)
dump_data(); /* -d */
@@ -898,7 +898,7 @@ int main(int argc, char **argv) {
print_info();
if(restore_term) /* -T */
- puts(ESC_UTF8_OFF);
+ fputs(ESC_UTF8_OFF, stdout);
return 0;
}