helly Mon Dec 26 14:46:34 2005 EDT Modified files: /php-src/main snprintf.c Log: - Support full range of floats http://cvs.php.net/viewcvs.cgi/php-src/main/snprintf.c?r1=1.39&r2=1.40&diff_format=u Index: php-src/main/snprintf.c diff -u php-src/main/snprintf.c:1.39 php-src/main/snprintf.c:1.40 --- php-src/main/snprintf.c:1.39 Mon Dec 26 13:39:17 2005 +++ php-src/main/snprintf.c Mon Dec 26 14:46:34 2005 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: snprintf.c,v 1.39 2005/12/26 13:39:17 helly Exp $ */ +/* $Id: snprintf.c,v 1.40 2005/12/26 14:46:34 helly Exp $ */ /* ==================================================================== * Copyright (c) 1995-1998 The Apache Group. All rights reserved. @@ -156,8 +156,9 @@ } /* 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 /*
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php