summaryrefslogtreecommitdiff
path: root/Zend/zend_API.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>1999-12-27 19:17:40 +0000
committerAndi Gutmans <andi@php.net>1999-12-27 19:17:40 +0000
commitc34a062f5c4784e1b5c226dc050aa227539a886d (patch)
tree6d7b95904e97e4eae931d1d7c1bc00f345b82e19 /Zend/zend_API.c
parentb7a5b3c309ad64ddf9d60cfd3ca21d9f25315d87 (diff)
downloadphp-git-c34a062f5c4784e1b5c226dc050aa227539a886d.tar.gz
- Get rid of warning
Diffstat (limited to 'Zend/zend_API.c')
-rw-r--r--Zend/zend_API.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_API.c b/Zend/zend_API.c
index 0224154868..3ec6fac259 100644
--- a/Zend/zend_API.c
+++ b/Zend/zend_API.c
@@ -679,7 +679,7 @@ int zend_register_functions(zend_function_entry *functions, HashTable *function_
{
zend_function_entry *ptr = functions;
zend_function function;
- zend_internal_function *internal_function = &function;
+ zend_internal_function *internal_function = (zend_internal_function *)&function;
int count=0,unload=0;
HashTable *target_function_table = function_table;
CLS_FETCH();