diff options
author | Zeev Suraski <zeev@php.net> | 1999-06-04 11:44:02 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-06-04 11:44:02 +0000 |
commit | 9108abc28722d7e9c779b37520c280f967059979 (patch) | |
tree | f39ff947e1e4638d8760b304225f8b1f8b377330 /Zend/zend_opcode.c | |
parent | 3cad348509b66828f421d1b843a025b555519a83 (diff) | |
download | php-git-9108abc28722d7e9c779b37520c280f967059979.tar.gz |
Minor updates (mostly __declspec() stuff)
Diffstat (limited to 'Zend/zend_opcode.c')
-rw-r--r-- | Zend/zend_opcode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c index 56521aeda6..0d7ac819ac 100644 --- a/Zend/zend_opcode.c +++ b/Zend/zend_opcode.c @@ -314,10 +314,10 @@ ZEND_API unary_op_type get_unary_op(int opcode) { switch(opcode) { case ZEND_BW_NOT: - return bitwise_not_function; + return (unary_op_type) bitwise_not_function; break; case ZEND_BOOL_NOT: - return boolean_not_function; + return (unary_op_type) boolean_not_function; break; default: return (unary_op_type) NULL; |