From: Moriyoshi Koizumi Date: Thu, 24 Jul 2008 20:44:15 +0000 (+0000) Subject: - MFH: Suppress signedness warnings X-Git-Tag: php-5.3.0alpha1~141 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1f845199f79d4fd87074e1dfd4e236207e1bc1c2;p=php - MFH: Suppress signedness warnings --- diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c index b23ee3a533..ce4b68ae1f 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -1808,7 +1808,7 @@ ZEND_FUNCTION(zend_test_func) #ifdef ZTS ZEND_FUNCTION(zend_thread_id) { - RETURN_LONG(tsrm_thread_id()); + RETURN_LONG((long)tsrm_thread_id()); } #endif #endif