Update usage of ff2jpg(1) and ff2ppm(1) - farbfeld - suckless image format with conversion tools
 (HTM) git clone git://git.suckless.org/farbfeld
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit f04abc0e2f995e95fda64230a2bd4c289b10d6bf
 (DIR) parent 9fdfff98f15fb3f7a01d944aba5d75d9d34c66ed
 (HTM) Author: Laslo Hunhold <dev@frign.de>
       Date:   Fri, 14 Apr 2017 21:45:32 +0200
       
       Update usage of ff2jpg(1) and ff2ppm(1)
       
       so they align with the manpages.
       
       Diffstat:
         M ff2jpg.c                            |       2 +-
         M ff2ppm.c                            |       2 +-
       
       2 files changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/ff2jpg.c b/ff2jpg.c
       @@ -47,7 +47,7 @@ jpeg_setup_writer(struct jpeg_compress_struct *s, struct jpeg_error_mgr *e,
        static void
        usage(void)
        {
       -        fprintf(stderr, "usage: %s [-b #rrggbb] [-o] [-q quality]\n", argv0);
       +        fprintf(stderr, "usage: %s [-b colour] [-o] [-q quality]\n", argv0);
                exit(1);
        }
        
 (DIR) diff --git a/ff2ppm.c b/ff2ppm.c
       @@ -14,7 +14,7 @@
        static void
        usage(void)
        {
       -        fprintf(stderr, "usage: %s [-b #rrggbb]\n", argv0);
       +        fprintf(stderr, "usage: %s [-b colour]\n", argv0);
                exit(1);
        }