diff options
author | Noah Birnel <nbirnel@gmail.com> | 2014-08-03 10:34:37 -0700 |
---|---|---|
committer | Noah Birnel <nbirnel@gmail.com> | 2014-08-03 10:34:37 -0700 |
commit | a15831215a8f8076a35fcb0781a1cb0289b216b7 (patch) | |
tree | bdaeca98b8b41506040bc4975602c7d0e0b02233 /src/filelist.c | |
parent | 2b04e7f4bd422c015edbc8de601b6aed951b3f71 (diff) |
make all opt.verbose messages print to stderr
manually changed in collage, imlib, filelist, thumbnail, slideshow,
index
feh_display_status also changed
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); |