diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 2005-12-13 13:23:27 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2005-12-13 13:23:27 +0000 |
commit | b384108ed62a9fb4f8a97eab187098aa77da4b8c (patch) | |
tree | 0ee802114134af33c73cc985a740ed994b45c9c4 | |
parent | 40b1ae9e006361290098cb55d65a83302c4e57d6 (diff) |
Notes
-rw-r--r-- | lib/libc/stdio/vfprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdio/vfprintf.c b/lib/libc/stdio/vfprintf.c index c19b06946f56..25ac2d71efda 100644 --- a/lib/libc/stdio/vfprintf.c +++ b/lib/libc/stdio/vfprintf.c @@ -528,8 +528,8 @@ __vfprintf(FILE *fp, const char *fmt0, va_list ap) static char zeroes[PADSIZE] = {'0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0'}; - static const char xdigs_lower[16] = "0123456789abcdef"; - static const char xdigs_upper[16] = "0123456789ABCDEF"; + static const char xdigs_lower[17] = "0123456789abcdef?"; + static const char xdigs_upper[17] = "0123456789ABCDEF?"; /* * BEWARE, these `goto error' on error, and PAD uses `n'. |