cvs: ZendEngine2(PHP_5_3) / zend_builtin_functions.c

"Moriyoshi Koizumi" <[email protected]>
Newsgroups gmane.comp.php.cvs.zend
Message-ID <cvsmoriyoshi1216932255@cvsserver>
moriyoshi		Thu Jul 24 20:44:15 2008 UTC

  Modified files:              (Branch: PHP_5_3)
    /ZendEngine2	zend_builtin_functions.c 
  Log:
  - MFH: Suppress signedness warnings
  
  
http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_builtin_functions.c?r1=1.277.2.12.2.25.2.25&r2=1.277.2.12.2.25.2.26&diff_format=u
Index: ZendEngine2/zend_builtin_functions.c
diff -u ZendEngine2/zend_builtin_functions.c:1.277.2.12.2.25.2.25 ZendEngine2/zend_builtin_functions.c:1.277.2.12.2.25.2.26
--- ZendEngine2/zend_builtin_functions.c:1.277.2.12.2.25.2.25	Thu Jul 24 19:52:23 2008
+++ ZendEngine2/zend_builtin_functions.c	Thu Jul 24 20:44:15 2008
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: zend_builtin_functions.c,v 1.277.2.12.2.25.2.25 2008/07/24 19:52:23 felipe Exp $ */
+/* $Id: zend_builtin_functions.c,v 1.277.2.12.2.25.2.26 2008/07/24 20:44:15 moriyoshi Exp $ */
 
 #include "zend.h"
 #include "zend_API.h"
@@ -1808,7 +1808,7 @@
 #ifdef ZTS
 ZEND_FUNCTION(zend_thread_id)
 {
-	RETURN_LONG(tsrm_thread_id());
+	RETURN_LONG((long)tsrm_thread_id());
 }
 #endif
 #endif



-- 
Zend Engine CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.