Changeset 1188

Show
Ignore:
Timestamp:
12/07/2012 10:31:27 AM (6 months ago)
Author:
moo
Message:

fix build, part of previous change

Location:
trunk/mod_cacher
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/mod_cacher/xc_cache.h

    r1132 r1188  
    185185/* }}} */ 
    186186 
    187 int xc_is_rw(const void *p); 
    188 int xc_is_ro(const void *p); 
    189 int xc_is_shm(const void *p); 
     187zend_bool xc_is_rw(const void *p); 
     188zend_bool xc_is_ro(const void *p); 
     189zend_bool xc_is_shm(const void *p); 
    190190/* {{{ xc_gc_op_array_t */ 
    191191typedef struct { 
  • trunk/mod_cacher/xc_cacher.c

    r1187 r1188  
    22542254} 
    22552255/* }}} */ 
    2256 int xc_is_shm(const void *p) /* {{{ */ 
     2256zned_bool xc_is_shm(const void *p) /* {{{ */ 
    22572257{ 
    22582258    return xc_is_ro(p) || xc_is_rw(p);