summaryrefslogtreecommitdiff
path: root/sapi
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2002-06-01 10:27:51 +0000
committerAndi Gutmans <andi@php.net>2002-06-01 10:27:51 +0000
commit0d5862d75a0df51caa09dc7107dd05a18c026ce5 (patch)
treedb4fa852b77d28b3543e5d665aae62a9e858fede /sapi
parentf01a42b4997cb9d0351e6a14c093d094e4380720 (diff)
downloadphp-git-0d5862d75a0df51caa09dc7107dd05a18c026ce5.tar.gz
- Reapply netware patch
Diffstat (limited to 'sapi')
-rw-r--r--sapi/apache/php_apache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache/php_apache.c b/sapi/apache/php_apache.c
index 9a33179834..812d5ffff9 100644
--- a/sapi/apache/php_apache.c
+++ b/sapi/apache/php_apache.c
@@ -80,7 +80,7 @@ static void php_apache_globals_ctor(php_apache_info_struct *apache_globals TSRML
static PHP_MINIT_FUNCTION(apache)
{
#ifdef ZTS
- ts_allocate_id(&php_apache_info_id, sizeof(php_apache_info_struct), php_apache_globals_ctor, NULL);
+ ts_allocate_id(&php_apache_info_id, sizeof(php_apache_info_struct), (ts_allocate_ctor) php_apache_globals_ctor, NULL);
#else
php_apache_globals_ctor(&php_apache_info TSRMLS_CC);
#endif