projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
897f4d0
)
Fix typo in previous checkin: len -> lenbuf.
author
Paul Eggert
<eggert@cs.ucla.edu>
Fri, 11 Aug 2006 17:47:58 +0000
(17:47 +0000)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Fri, 11 Aug 2006 17:47:58 +0000
(17:47 +0000)
lib/snprintf.c
patch
|
blob
|
history
diff --git
a/lib/snprintf.c
b/lib/snprintf.c
index ef00f55b414ed5d04a00f9b7a60de01e7c92766b..5c788fd3726b029fe511aed37dc895fd0c4aec5f 100644
(file)
--- a/
lib/snprintf.c
+++ b/
lib/snprintf.c
@@
-49,7
+49,7
@@
snprintf (char *str, size_t size, const char *format, ...)
va_list args;
va_start (args, format);
- output = vasnprintf (str, &len, format, args);
+ output = vasnprintf (str, &len
buf
, format, args);
len = lenbuf;
va_end (args);