diff options
author | Jim Meyering <jim@meyering.net> | 1996-07-30 05:33:30 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-07-30 05:33:30 +0000 |
commit | 9ba877cf285561ea8088158ec7f5bd517e76837b (patch) | |
tree | 416132f6c6b3bbd5e1edd7225cde6fd92709d038 | |
parent | e22b1e56e68a914d11df7160625d5fae0dd26380 (diff) | |
download | coreutils-9ba877cf285561ea8088158ec7f5bd517e76837b.tar.xz |
Update from GNU libc master.
-rw-r--r-- | lib/strftime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strftime.c b/lib/strftime.c index 1633c5a78..ac5e4ae44 100644 --- a/lib/strftime.c +++ b/lib/strftime.c @@ -341,7 +341,7 @@ strftime (s, maxsize, format, tp) /* Format the number according to the PAD flag. */ register char *nf = &number_fmt[1]; - int printed; + int printed = maxdigits; switch (pad) { |