Skip to content

Commit

Permalink
Use 'feh: foo' instead of mixed 'feh: foo' and 'feh - foo' messages
Browse files Browse the repository at this point in the history
  • Loading branch information
derf committed Jan 24, 2012
1 parent b77fdd0 commit 37da0ee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/collage.c
Expand Up @@ -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);
Expand All @@ -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);
Expand Down Expand Up @@ -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));
Expand Down
2 changes: 1 addition & 1 deletion src/options.c
Expand Up @@ -795,7 +795,7 @@ static void show_version(void)

void show_mini_usage(void)
{
fputs(PACKAGE " - No loadable images specified.\n"
fputs(PACKAGE ": No loadable images specified.\n"
#ifdef INCLUDE_HELP
"See '" PACKAGE " --help' or 'man " PACKAGE "' for detailed usage information\n",
#else
Expand Down

0 comments on commit 37da0ee

Please sign in to comment.