summaryrefslogtreecommitdiff
path: root/sapi/cgi
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2000-06-13 09:17:06 +0000
committerSascha Schumann <sas@php.net>2000-06-13 09:17:06 +0000
commit6caf633cf702d2708ebf7a4beacc70f8d93bbd78 (patch)
tree2711d5f11590d381d24b5ee7fa70508deb5942b5 /sapi/cgi
parent5bbc4114f183cd5e136ba4ab231355c5e1c543e2 (diff)
downloadphp-git-6caf633cf702d2708ebf7a4beacc70f8d93bbd78.tar.gz
Proper casts
Diffstat (limited to 'sapi/cgi')
-rw-r--r--sapi/cgi/cgi_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c
index d3bb8ed1d1..9fdb3db7cf 100644
--- a/sapi/cgi/cgi_main.c
+++ b/sapi/cgi/cgi_main.c
@@ -598,7 +598,7 @@ any .htaccess restrictions anywhere on your site you can leave doc_root undefine
file_handle.handle.fp = stdin;
/* This actually destructs the elements of the list - ugly hack */
- zend_llist_apply(&global_vars, php_register_command_line_global_vars);
+ zend_llist_apply(&global_vars, (llist_apply_func_t) php_register_command_line_global_vars);
zend_llist_destroy(&global_vars);
if (!cgi) {