Skip to content

Commit

Permalink
- fix build: use Z_LVAL in assignment as Z_BVAL contains a (zend_bool…
Browse files Browse the repository at this point in the history
…) cast
  • Loading branch information
mike committed Nov 28, 2006
1 parent d2ebeb1 commit 2ade9fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runkit_sandbox.c
Expand Up @@ -1470,7 +1470,7 @@ PHP_RUNKIT_SANDBOX_SETTING_GETTER(name) \
\
ALLOC_ZVAL(retval); \
Z_TYPE_P(retval) = IS_BOOL; \
Z_BVAL_P(retval) = objval->name; \
Z_LVAL_P(retval) = objval->name; \
retval->refcount = 0; \
retval->is_ref = 0; \
\
Expand Down

0 comments on commit 2ade9fd

Please sign in to comment.