]> granicus.if.org Git - php/commitdiff
- Suppress signedness warnings.
authorMoriyoshi Koizumi <moriyoshi@php.net>
Thu, 24 Jul 2008 20:44:10 +0000 (20:44 +0000)
committerMoriyoshi Koizumi <moriyoshi@php.net>
Thu, 24 Jul 2008 20:44:10 +0000 (20:44 +0000)
Zend/zend_builtin_functions.c

index 45b9a0f50614996abd62d49b930b9ca145634d82..b74265f9e6f43a5e44c3592fc8ec815aa39088e8 100644 (file)
@@ -1870,7 +1870,7 @@ ZEND_FUNCTION(zend_test_func)
 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