diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2006-08-11 17:47:40 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2006-08-11 17:47:40 +0000 |
commit | 0154d1876bba4cb56c606406add8bf68954a495a (patch) | |
tree | daf9d818b4029677cd0ad03c8f500a5190e80dec /lib | |
parent | 78bc0d8366023bf0706af3d49d00495e7968879f (diff) | |
download | coreutils-0154d1876bba4cb56c606406add8bf68954a495a.tar.xz |
Fix typo in previous checkin: len -> lenbuf.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/snprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/snprintf.c b/lib/snprintf.c index ef00f55b4..5c788fd37 100644 --- 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, &lenbuf, format, args); len = lenbuf; va_end (args); |