logo       
Google Custom Search
    AddThis Social Bookmark Button
-->

cvs: ZendEngine2(PHP_5_2) / zend_strtod.c: msg#00104

Subject: cvs: ZendEngine2(PHP_5_2) / zend_strtod.c
iliaa           Tue Dec 26 17:17:52 2006 UTC

  Modified files:              (Branch: PHP_5_2)
    /ZendEngine2        zend_strtod.c 
  Log:
  
  Fixed compiler warning
   
  
http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_strtod.c?r1=1.17.2.2.2.4&r2=1.17.2.2.2.5&diff_format=u
Index: ZendEngine2/zend_strtod.c
diff -u ZendEngine2/zend_strtod.c:1.17.2.2.2.4 
ZendEngine2/zend_strtod.c:1.17.2.2.2.5
--- ZendEngine2/zend_strtod.c:1.17.2.2.2.4      Tue Dec 26 16:44:20 2006
+++ ZendEngine2/zend_strtod.c   Tue Dec 26 17:17:52 2006
@@ -2568,7 +2568,7 @@
                s += 2;
        }
 
-       while (c = *s++) {
+       while ((c = *s++)) {
                if (c >= '0' && c <= '9') {
                        c -= '0';
                } else if (c >= 'A' && c <= 'F') {

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




<Prev in Thread] Current Thread [Next in Thread>