summaryrefslogtreecommitdiff
path: root/src/thumbnail.c
diff options
context:
space:
mode:
authorNoah Birnel <nbirnel@gmail.com>2014-08-03 10:34:37 -0700
committerNoah Birnel <nbirnel@gmail.com>2014-08-03 10:34:37 -0700
commita15831215a8f8076a35fcb0781a1cb0289b216b7 (patch)
treebdaeca98b8b41506040bc4975602c7d0e0b02233 /src/thumbnail.c
parent2b04e7f4bd422c015edbc8de601b6aed951b3f71 (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/thumbnail.c')
-rw-r--r--src/thumbnail.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/thumbnail.c b/src/thumbnail.c
index ed2a16b..1719fdc 100644
--- a/src/thumbnail.c
+++ b/src/thumbnail.c
@@ -357,7 +357,7 @@ void init_thumbnail_mode(void)
winwidget_render_image(winwid, 0, 1);
if (opt.verbose)
- putc('\n', stdout);
+ putc('\n', stderr);
if (opt.title_font) {
int fw, fh, fx, fy;
@@ -391,8 +391,8 @@ void init_thumbnail_mode(void)
tw = gib_imlib_image_get_width(td.im_main);
th = gib_imlib_image_get_height(td.im_main);
- fprintf(stdout, PACKAGE " - File saved as %s\n", output_buf);
- fprintf(stdout,
+ fprintf(stderr, PACKAGE " - File saved as %s\n", output_buf);
+ fprintf(stderr,
" - Image is %dx%d pixels and contains %d thumbnails\n",
tw, th, thumbnailcount);
}