The following patch quells a warning under 'cc: WorkShop Compilers 5.0 98/12/15 C 5.0' (Solaris 8). I think it's theoretically correct, but I'd like a second opinion before I commit the change.
-- Jon Parise ([EMAIL PROTECTED]) . Information Technology (2001) http://www.csh.rit.edu/~jon/ : Computer Science House Member
Index: php_ticks.c =================================================================== RCS file: /repository/php4/main/php_ticks.c,v retrieving revision 1.14 diff -u -r1.14 php_ticks.c --- php_ticks.c 28 Feb 2002 08:27:04 -0000 1.14 +++ php_ticks.c 4 Mar 2002 10:49:31 -0000 @@ -52,7 +52,7 @@ { TSRMLS_FETCH(); - zend_llist_del_element(&PG(tick_functions), func, + zend_llist_del_element(&PG(tick_functions), (void *)func, (int(*)(void*, void*))php_compare_tick_functions); }
-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php