diff options
| author | Sascha Schumann <sas@php.net> | 2000-10-18 19:53:43 +0000 |
|---|---|---|
| committer | Sascha Schumann <sas@php.net> | 2000-10-18 19:53:43 +0000 |
| commit | ffc6e72604cf3401c65f2856445cb69a3f40471a (patch) | |
| tree | ac96342ed68fc94c1d160eb748abcfdfab590085 /Zend | |
| parent | a953f6bc5bdc964b992bec34bdff40281e70f0c6 (diff) | |
| download | php-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.h | 2 |
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); \ } |
