From 753fc6efd6488d16d83f9cc20b45958d9b208420 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sat, 30 Apr 2011 19:49:44 +0200 Subject: Replace some printf calls by fputs/putc --- src/filelist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/filelist.c') diff --git a/src/filelist.c b/src/filelist.c index fa1735d..c45d1f7 100644 --- a/src/filelist.c +++ b/src/filelist.c @@ -256,7 +256,7 @@ gib_list *feh_file_info_preload(gib_list * list) gib_list *remove_list = NULL; if (opt.verbose) - fprintf(stdout, PACKAGE " - preloading...\n"); + fputs(PACKAGE " - preloading...\n", stdout); for (l = list; l; l = l->next) { file = FEH_FILE(l->data); @@ -270,7 +270,7 @@ gib_list *feh_file_info_preload(gib_list * list) feh_display_status('.'); } if (opt.verbose) - fprintf(stdout, "\n"); + fputs("\n", stdout); if (remove_list) { for (l = remove_list; l; l = l->next) -- cgit v1.2.3