diff options
author | Daniel Friesel <derf@finalrewind.org> | 2014-08-27 19:46:13 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2014-08-27 19:46:13 +0200 |
commit | d3c0aa11daf16c03be51e8fcb113d32320ef531c (patch) | |
tree | 817696db27535ceb859f3bffdf085878b6baad17 /src/filelist.c | |
parent | 3e284a9ac8959360278389cd537509a24f83c120 (diff) | |
parent | a15831215a8f8076a35fcb0781a1cb0289b216b7 (diff) |
Merge branch 'verbose-to-stderr' of https://github.com/nbirnel/feh into nbirnel-verbose-to-stderr
Diffstat (limited to 'src/filelist.c')
-rw-r--r-- | src/filelist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filelist.c b/src/filelist.c index b1a369a..f31f05b 100644 --- a/src/filelist.c +++ b/src/filelist.c @@ -600,7 +600,7 @@ void feh_save_filelist() tmpname = feh_unique_filename("", "filelist"); if (opt.verbose) - printf("saving filelist to filename '%s'\n", tmpname); + fprintf(stderr, "saving filelist to filename '%s'\n", tmpname); feh_write_filelist(filelist, tmpname); free(tmpname); |