summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2005-07-28 21:39:57 +0000
committerAndi Gutmans <andi@php.net>2005-07-28 21:39:57 +0000
commit9c392835de8e17abbd1fa91e9a767fde2b680962 (patch)
tree2fcf61e6e8560e781a8e50b05f24b843c91c176c
parent0b34e041e3d451089e5827d0aa2a942689b6b60c (diff)
downloadphp-git-9c392835de8e17abbd1fa91e9a767fde2b680962.tar.gz
- Tiny fixlet
-rw-r--r--Zend/zend_vm_def.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_vm_def.h b/Zend/zend_vm_def.h
index 46b10e2daa..f3df3f0003 100644
--- a/Zend/zend_vm_def.h
+++ b/Zend/zend_vm_def.h
@@ -1403,7 +1403,7 @@ ZEND_VM_HANDLER(39, ZEND_ASSIGN_REF, VAR|CV, VAR|CV)
ZEND_VM_HANDLER(42, ZEND_JMP, ANY, ANY)
{
#if DEBUG_ZEND>=2
- printf("Jumping to %d\n", opline->op1.u.opline_num);
+ printf("Jumping to %d\n", EX(opline)->op1.u.opline_num);
#endif
ZEND_VM_SET_OPCODE(EX(opline)->op1.u.jmp_addr);
ZEND_VM_CONTINUE(); /* CHECK_ME */