URI:
       tAdd missing newline in usage() - scribo - Email-based phlog generator
  HTML git clone git://git.z3bra.org/scribo.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 0e93ea5b7578b93a0cb8dfaff511b1aee3074569
   DIR parent 850be8fe6fee2527debe3351916e4b5627416b42
  HTML Author: Willy Goiffon <dev@z3bra.org>
       Date:   Tue,  8 Sep 2020 16:45:08 +0200
       
       Add missing newline in usage()
       
       Diffstat:
         M scribo.c                            |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/scribo.c b/scribo.c
       t@@ -45,7 +45,7 @@ int writeindex(FILE *, char *);
        void
        usage(char *pgm)
        {
       -        fprintf(stderr, "usage: %s [-a author] [-b basedir] [-d fmt] [-io file]", pgm);
       +        fprintf(stderr, "usage: %s [-a author] [-b basedir] [-d fmt] [-io file]\n", pgm);
        }
        
        char *
       t@@ -196,7 +196,7 @@ write_b64(FILE *in, FILE *out)
                len = base64_decode(&msg, (unsigned char *)b64, len);
        
                free(b64);
       -        
       +
                fwrite(msg, 1, len, out);
        
                free(msg);