diff options
author | Daniel Friesel <derf@finalrewind.org> | 2012-01-25 00:04:59 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2012-01-25 00:04:59 +0100 |
commit | 37da0ee03304cfd47094c747d64d23b33ef47e55 (patch) | |
tree | c7b950f288054b3ad76673ea8480e12526f053e1 /src/collage.c | |
parent | b77fdd06cb3bf418e7d72c26959dd6933a010c74 (diff) |
Use 'feh: foo' instead of mixed 'feh: foo' and 'feh - foo' messages
Diffstat (limited to 'src/collage.c')
-rw-r--r-- | src/collage.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/collage.c b/src/collage.c index 076aff2..a7ae44e 100644 --- a/src/collage.c +++ b/src/collage.c @@ -66,7 +66,7 @@ void init_collage_mode(void) if (bg_im) { if (opt.verbose) fputs(PACKAGE - " - No size restriction specified for collage.\n" + ": No size restriction specified for collage.\n" " You did specify a background however, so the\n" " collage size has defaulted to the size of the image\n", stdout); @@ -75,7 +75,7 @@ void init_collage_mode(void) } else { if (opt.verbose) fputs(PACKAGE - " - No size restriction specified for collage.\n" + ": No size restriction specified for collage.\n" " - For collage mode, you need to specify width and height.\n" " Using defaults (width 800, height 600)\n", stdout); @@ -199,7 +199,7 @@ void init_collage_mode(void) tw = gib_imlib_image_get_width(im_main); th = gib_imlib_image_get_height(im_main); - fprintf(stdout, PACKAGE " - File saved as %s\n", output_buf); + fprintf(stdout, PACKAGE ": File saved as %s\n", output_buf); fprintf(stdout, " - Image is %dx%d pixels and contains %d thumbnails\n", tw, th, (tw / opt.thumb_w) * (th / opt.thumb_h)); |