From: Rich Felker Date: Tue, 17 Apr 2012 01:50:23 +0000 (-0400) Subject: fix %lf, etc. with printf X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=cc3a4466605fe8dfc31f3b75779110ac93055bc1 fix %lf, etc. with printf the l prefix is redundant/no-op with printf, since default promotions always promote floats to double; however, it is valid, and printf was wrongly rejecting it. --- diff --git a/src/stdio/vfprintf.c b/src/stdio/vfprintf.c index b5001ff2..928c8c16 100644 --- a/src/stdio/vfprintf.c +++ b/src/stdio/vfprintf.c @@ -73,6 +73,8 @@ static const unsigned char states[]['z'-'A'+1] = { }, { /* 1: l-prefixed */ S('d') = LONG, S('i') = LONG, S('o') = ULONG, S('u') = ULONG, S('x') = ULONG, S('X') = ULONG, + S('e') = DBL, S('f') = DBL, S('g') = DBL, S('a') = DBL, + S('E') = DBL, S('F') = DBL, S('G') = DBL, S('A') = DBL, S('c') = INT, S('s') = PTR, S('n') = PTR, S('l') = LLPRE, }, { /* 2: ll-prefixed */