diff options
author | Andi Gutmans <andi@php.net> | 2002-06-01 10:27:51 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2002-06-01 10:27:51 +0000 |
commit | 0d5862d75a0df51caa09dc7107dd05a18c026ce5 (patch) | |
tree | db4fa852b77d28b3543e5d665aae62a9e858fede /sapi | |
parent | f01a42b4997cb9d0351e6a14c093d094e4380720 (diff) | |
download | php-git-0d5862d75a0df51caa09dc7107dd05a18c026ce5.tar.gz |
- Reapply netware patch
Diffstat (limited to 'sapi')
-rw-r--r-- | sapi/apache/php_apache.c | 2 |
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 |