tony2001                Wed Dec  6 14:47:19 2006 UTC

  Modified files:              
    /php-src/ext/standard       formatted_print.c 
  Log:
  add missing 'F' modified (noticed by Matt)
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/formatted_print.c?r1=1.85&r2=1.86&diff_format=u
Index: php-src/ext/standard/formatted_print.c
diff -u php-src/ext/standard/formatted_print.c:1.85 
php-src/ext/standard/formatted_print.c:1.86
--- php-src/ext/standard/formatted_print.c:1.85 Wed Dec  6 09:50:28 2006
+++ php-src/ext/standard/formatted_print.c      Wed Dec  6 14:47:19 2006
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: formatted_print.c,v 1.85 2006/12/06 09:50:28 tony2001 Exp $ */
+/* $Id: formatted_print.c,v 1.86 2006/12/06 14:47:19 tony2001 Exp $ */
 
 #include <math.h>                              /* modf() */
 #include "php.h"
@@ -227,6 +227,9 @@
                        if (precision) {
                                precision--;
                        }
+               case 'F':
+                               fmt = 'f';
+                               /* break is missing */
                case 'E':
                case 'f':
                        s = ap_php_conv_fp(fmt, number, 0, precision,

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to