fixed missing new lines - slock - simple X display locker utility
 (HTM) git clone git://git.suckless.org/slock
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 7a217cb7c4f1a7439b76f5fb839035d7021eb7ff
 (DIR) parent 5d433c7cf509daf064b2a0412ed6cf3c0068afde
 (HTM) Author: anselm@garbe.us <unknown>
       Date:   Thu,  9 Feb 2012 20:18:49 +0100
       
       fixed missing new lines
       Diffstat:
         M slock.c                             |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/slock.c b/slock.c
       @@ -207,7 +207,7 @@ lockscreen(Display *dpy, int screen) {
        
        static void
        usage(void) {
       -        fprintf(stderr, "usage: slock [-v]");
       +        fprintf(stderr, "usage: slock [-v]\n");
                exit(EXIT_FAILURE);
        }
        
       @@ -220,7 +220,7 @@ main(int argc, char **argv) {
                int screen;
        
                if((argc == 2) && !strcmp("-v", argv[1]))
       -                die("slock-%s, © 2006-2012 Anselm R Garbe", VERSION);
       +                die("slock-%s, © 2006-2012 Anselm R Garbe\n", VERSION);
                else if(argc != 1)
                        usage();