summaryrefslogtreecommitdiff
path: root/Zend
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2000-10-18 19:53:43 +0000
committerSascha Schumann <sas@php.net>2000-10-18 19:53:43 +0000
commitffc6e72604cf3401c65f2856445cb69a3f40471a (patch)
treeac96342ed68fc94c1d160eb748abcfdfab590085 /Zend
parenta953f6bc5bdc964b992bec34bdff40281e70f0c6 (diff)
downloadphp-git-ffc6e72604cf3401c65f2856445cb69a3f40471a.tar.gz
Add explicit conversion from 'void *', otherwise ANSI C++ compilers
will break out.
Diffstat (limited to 'Zend')
-rw-r--r--Zend/zend_fast_cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_fast_cache.h b/Zend/zend_fast_cache.h
index 883bb589ee..2f56982e29 100644
--- a/Zend/zend_fast_cache.h
+++ b/Zend/zend_fast_cache.h
@@ -74,7 +74,7 @@ typedef struct _zend_fast_cache_list_entry {
{ \
ALS_FETCH(); \
\
- ((zend_fast_cache_list_entry *) (p))->next = AG(fast_cache_list_head)[fc_type]; \
+ ((zend_fast_cache_list_entry *) (p))->next = (zend_fast_cache_list_entry *) AG(fast_cache_list_head)[fc_type]; \
AG(fast_cache_list_head)[fc_type] = (zend_fast_cache_list_entry *) (p); \
}