From a8b80b601f2aba52acdaaa6fa44f632620ed1bbe Mon Sep 17 00:00:00 2001 From: Xuefer Date: Wed, 17 Jul 2013 08:21:51 +0000 Subject: [PATCH] use dec for opline git-svn-id: svn://svn.lighttpd.net/xcache/trunk@1328 c26eb9a1-5813-0410-bd6c-c2e55f420ca7 --- bin/phpdop.phpr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/phpdop.phpr b/bin/phpdop.phpr index 62bbdad..87442ca 100755 --- a/bin/phpdop.phpr +++ b/bin/phpdop.phpr @@ -40,7 +40,7 @@ function dump_opcodes($opcodes, $indent = '') foreach ($decompiler->fixOpcode($opcodes) as $line => $op) { echo $indent; echo sprintf("%3d ", $op['lineno']); - echo sprintf("%3x ", $line); + echo sprintf("%3d ", $line); $name = xcache_get_opcode($op['opcode']); if (substr($name, 0, 5) == 'ZEND_') {