projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
32d197f
)
Fix "usage()" to do the missing line termination.
author
Linus Torvalds
<torvalds@ppc970.osdl.org>
Mon, 11 Apr 2005 20:53:49 +0000
(13:53 -0700)
committer
Linus 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
patch
|
blob
|
history
diff --git
a/read-cache.c
b/read-cache.c
index
51403ce
..
3c575f7
100644
(file)
--- a/
read-cache.c
+++ b/
read-cache.c
@@
-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);
- v
fprintf(stderr
, err, args);
+ v
snprintf(string, sizeof(string)
, err, args);
va_end(args);
+ fprintf(stderr, "%s\n", string);
exit(1);
}