cvs: ZendEngine2 / zend_builtin_functions.c

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

  Modified files:              
    /ZendEngine2	zend_builtin_functions.c 
  Log:
  - Suppress signedness warnings.
  
  
http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_builtin_functions.c?r1=1.379&r2=1.380&diff_format=u
Index: ZendEngine2/zend_builtin_functions.c
diff -u ZendEngine2/zend_builtin_functions.c:1.379 ZendEngine2/zend_builtin_functions.c:1.380
--- ZendEngine2/zend_builtin_functions.c:1.379	Thu Jul 24 19:50:22 2008
+++ ZendEngine2/zend_builtin_functions.c	Thu Jul 24 20:44:10 2008
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: zend_builtin_functions.c,v 1.379 2008/07/24 19:50:22 felipe Exp $ */
+/* $Id: zend_builtin_functions.c,v 1.380 2008/07/24 20:44:10 moriyoshi Exp $ */
 
 #include "zend.h"
 #include "zend_API.h"
@@ -1870,7 +1870,7 @@
 Returns a unique identifier for the current thread */
 ZEND_FUNCTION(zend_thread_id)
 {
-	RETURN_LONG(tsrm_thread_id());
+	RETURN_LONG((long)tsrm_thread_id());
 }
 /* }}} */
 #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.