From 8723742015b52d17a3e025aabf5c38a57f7870e3 Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Sat, 14 Oct 2017 09:15:07 +0300 Subject: [PATCH] Don't output x11 tile compilation info into stderr --- win/X11/tile2x11.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/win/X11/tile2x11.c b/win/X11/tile2x11.c index 8b7b455e1..d8169b37b 100644 --- a/win/X11/tile2x11.c +++ b/win/X11/tile2x11.c @@ -117,7 +117,7 @@ char *fname; } merge_text_colormap(); count = convert_tiles(&curr_tb, header.ntiles); - Fprintf(stderr, "%s: %lu tiles\n", fname, count); + printf("%s: %lu tiles\n", fname, count); header.ntiles += count; fclose_text_file(); } @@ -199,7 +199,7 @@ char **argv; } process_file(argv[i]); } - Fprintf(stderr, "Total tiles: %ld\n", header.ntiles); + printf("Total tiles: %ld\n", header.ntiles); /* round size up to the end of the row */ if ((header.ntiles % header.per_row) != 0) {