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/thumbnail.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/thumbnail.c')
-rw-r--r-- | src/thumbnail.c | 6 |
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); } |