Fix "usage()" to do the missing line termination.
authorLinus Torvalds <torvalds@ppc970.osdl.org>
Mon, 11 Apr 2005 20:53:49 +0000 (13:53 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Mon, 11 Apr 2005 20:53:49 +0000 (13:53 -0700)
It got broken when I changed it to use stdarg.

read-cache.c

index 51403ce..3c575f7 100644 (file)
@@ -12,10 +12,12 @@ unsigned int active_nr = 0, active_alloc = 0;
 void usage(const char *err, ...)
 {
        va_list args;
+       char string[200];
 
        va_start(args, err);
-       vfprintf(stderr, err, args);
+       vsnprintf(string, sizeof(string), err, args);
        va_end(args);
+       fprintf(stderr, "%s\n", string);
        exit(1);
 }