From 4933a099c29045e0615139c9a55d77862ae8ae6c Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Thu, 2 Mar 1995 10:00:12 +0000 Subject: * stdlib/strtod.c: Fixes from drepper. [IMPLICIT_ONE]: New macro, one for IEEE754 formats. * stdlib/strtold.c [IMPLICIT_ONE]: New macro, 0. * stdlib/strtof.c [IMPLICIT_ONE]: New macro, 1. * stdio/vfprintf.c: Correctly notice Z modifier. --- stdio/vfprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stdio') diff --git a/stdio/vfprintf.c b/stdio/vfprintf.c index c480a93ab9..1b773e7b02 100644 --- a/stdio/vfprintf.c +++ b/stdio/vfprintf.c @@ -338,7 +338,7 @@ DEFUN(vfprintf, (s, format, args), /* Check for type modifiers. */ is_short = is_long = is_long_double = 0; - while (*f == 'h' || *f == 'l' || *f == 'L' || *f == 'q') + while (*f == 'h' || *f == 'l' || *f == 'L' || *f == 'q' || *f == 'Z') switch (*f++) { case 'h': -- cgit 1.4.1