diff options
| author | Antony Dovgal <tony2001@php.net> | 2006-12-06 14:47:36 +0000 |
|---|---|---|
| committer | Antony Dovgal <tony2001@php.net> | 2006-12-06 14:47:36 +0000 |
| commit | da53237f417000ae5e84c3df12af1df026af28d0 (patch) | |
| tree | cc2de5a913c6a116d345fc0c5c013c48710b43ef /ext | |
| parent | cf4c83dd2bfb7e29784766685561fa6bebcc84a0 (diff) | |
| download | php-git-da53237f417000ae5e84c3df12af1df026af28d0.tar.gz | |
MFH: add missing 'F' modified (noticed by Matt)
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/standard/formatted_print.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/standard/formatted_print.c b/ext/standard/formatted_print.c index bd9627720a..097095d03a 100644 --- a/ext/standard/formatted_print.c +++ b/ext/standard/formatted_print.c @@ -227,6 +227,9 @@ php_sprintf_appenddouble(char **buffer, int *pos, if (precision) { precision--; } + case 'F': + fmt = 'f'; + /* break is missing */ case 'E': case 'f': s = ap_php_conv_fp(fmt, number, 0, precision, |
