diff options
author | Marcus Boerger <helly@php.net> | 2005-12-26 14:46:49 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2005-12-26 14:46:49 +0000 |
commit | 22ee7f8e3e9b4ac9a0eb1ab7eb93780c1b78ce7e (patch) | |
tree | a7c5e192fbaeec8baa733c7055c17f03d24f933d /main/snprintf.c | |
parent | ec1a7e02d4fd93cef70e1a0cdf08ec0f418b8e11 (diff) | |
download | php-git-22ee7f8e3e9b4ac9a0eb1ab7eb93780c1b78ce7e.tar.gz |
- MFH Support full range of floats
Diffstat (limited to 'main/snprintf.c')
-rw-r--r-- | main/snprintf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/snprintf.c b/main/snprintf.c index 5eba393699..495f8a6fcd 100644 --- a/main/snprintf.c +++ b/main/snprintf.c @@ -156,8 +156,9 @@ char * ap_php_conv_10(register wide_int num, register bool_int is_unsigned, } /* If you change this value then also change bug24640.phpt. + * Also NDIG must be reasonable smaller than NUM_BUF_SIZE. */ -#define NDIG 80 +#define NDIG 320 /* |