helly           Sat May  5 12:46:30 2007 UTC

  Modified files:              
    /php-src/sapi/cli   php_cli.c 
  Log:
  - Fix function signature
  
http://cvs.php.net/viewvc.cgi/php-src/sapi/cli/php_cli.c?r1=1.177&r2=1.178&diff_format=u
Index: php-src/sapi/cli/php_cli.c
diff -u php-src/sapi/cli/php_cli.c:1.177 php-src/sapi/cli/php_cli.c:1.178
--- php-src/sapi/cli/php_cli.c:1.177    Sat May  5 12:09:21 2007
+++ php-src/sapi/cli/php_cli.c  Sat May  5 12:46:30 2007
@@ -20,7 +20,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: php_cli.c,v 1.177 2007/05/05 12:09:21 helly Exp $ */
+/* $Id: php_cli.c,v 1.178 2007/05/05 12:46:30 helly Exp $ */
 
 #include "php.h"
 #include "php_globals.h"
@@ -195,7 +195,7 @@
        zend_hash_destroy(&sorted_registry);
 }
 
-static int print_extension_info(zend_extension *ext, void *arg TSRMLS_DC)
+static int print_extension_info(zend_extension *ext TSRMLS_DC)
 {
        php_printf("%s\n", ext->name);
        return ZEND_HASH_APPLY_KEEP;

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to