summaryrefslogtreecommitdiff
path: root/Zend/zend_opcode.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-06-04 11:44:02 +0000
committerZeev Suraski <zeev@php.net>1999-06-04 11:44:02 +0000
commit9108abc28722d7e9c779b37520c280f967059979 (patch)
treef39ff947e1e4638d8760b304225f8b1f8b377330 /Zend/zend_opcode.c
parent3cad348509b66828f421d1b843a025b555519a83 (diff)
downloadphp-git-9108abc28722d7e9c779b37520c280f967059979.tar.gz
Minor updates (mostly __declspec() stuff)
Diffstat (limited to 'Zend/zend_opcode.c')
-rw-r--r--Zend/zend_opcode.c4
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;