diff options
| -rw-r--r-- | src/stdio/vfprintf.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/stdio/vfprintf.c b/src/stdio/vfprintf.c index d421817c..2ecf7692 100644 --- a/src/stdio/vfprintf.c +++ b/src/stdio/vfprintf.c @@ -225,7 +225,7 @@ static int fmt_fp(FILE *f, long double y, int w, int p, int fl, int t)  	if (!isfinite(y)) {  		char *s = (t&32)?"inf":"INF"; -		if (y!=y) s=(t&32)?"nan":"NAN", pl=0; +		if (y!=y) s=(t&32)?"nan":"NAN";  		pad(f, ' ', w, 3+pl, fl&~ZERO_PAD);  		out(f, prefix, pl);  		out(f, s, 3); | 
