1
0
Fork 0

fix build, part of previous change

git-svn-id: svn://svn.lighttpd.net/xcache/trunk@1188 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
This commit is contained in:
Xuefer 2012-12-07 09:31:27 +00:00
parent 278cdbcb50
commit 00883bf301
2 changed files with 4 additions and 4 deletions

View File

@ -184,9 +184,9 @@ typedef struct xc_entry_hash_t { /* {{{ */
} xc_entry_hash_t;
/* }}} */
int xc_is_rw(const void *p);
int xc_is_ro(const void *p);
int xc_is_shm(const void *p);
zend_bool xc_is_rw(const void *p);
zend_bool xc_is_ro(const void *p);
zend_bool xc_is_shm(const void *p);
/* {{{ xc_gc_op_array_t */
typedef struct {
#ifdef ZEND_ENGINE_2

View File

@ -2253,7 +2253,7 @@ zend_bool xc_is_ro(const void *p) /* {{{ */
return 0;
}
/* }}} */
int xc_is_shm(const void *p) /* {{{ */
zned_bool xc_is_shm(const void *p) /* {{{ */
{
return xc_is_ro(p) || xc_is_rw(p);
}