Commit:    ac0ecc476c6b5a562b98026acc76390c2597392b
Author:    Felipe Pena <felipe...@gmail.com>         Sun, 10 Nov 2013 19:00:58 
-0200
Parents:   52f9c52475bdcdece80e05105ca44779cbcf7607
Branches:  PHP-5.6

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=ac0ecc476c6b5a562b98026acc76390c2597392b

Log:
- Fix code

Changed paths:
  M  phpdbg_opcode.c


Diff:
diff --git a/phpdbg_opcode.c b/phpdbg_opcode.c
index 60d4075..5796678 100644
--- a/phpdbg_opcode.c
+++ b/phpdbg_opcode.c
@@ -18,11 +18,12 @@
 */
 
 #include "zend_vm_opcodes.h"
+#include "zend_compile.h"
 #include "phpdbg_opcode.h"
 
 const char *phpdbg_decode_opcode(zend_uchar opcode) /* {{{ */
 {
-#define CASE(s) return #s
+#define CASE(s) case s: return #s
        switch (opcode) {
                CASE(ZEND_NOP);
                CASE(ZEND_ADD);


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to