summaryrefslogtreecommitdiff
path: root/phpdbg_print.c
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2013-11-24 13:27:22 +0100
committerBob Weinand <bobwei9@hotmail.com>2013-11-24 13:27:22 +0100
commit2800af6e47dbc9b76843e480bb5d5a61adebc342 (patch)
tree39d8c38072c097304f4df41e75fd2fdf4971bc75 /phpdbg_print.c
parentfcdae5867fa6905b25de29dae69e2d3bdcc8e60d (diff)
downloadphp-git-2800af6e47dbc9b76843e480bb5d5a61adebc342.tar.gz
Pssst, compiler!
Diffstat (limited to 'phpdbg_print.c')
-rw-r--r--phpdbg_print.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpdbg_print.c b/phpdbg_print.c
index 9865fe9750..67a0f3381d 100644
--- a/phpdbg_print.c
+++ b/phpdbg_print.c
@@ -70,12 +70,12 @@ static inline void phpdbg_print_function_helper(zend_function *method TSRMLS_DC)
char *decode = phpdbg_decode_opline(op_array, opline, &vars TSRMLS_CC);
if (decode != NULL) {
phpdbg_writeln(
- "\t\t#%lu\t%p %-30s %s",
+ "\t\t#%u\t%p %-30s %s",
opline->lineno,
opline,
phpdbg_decode_opcode(opline->opcode),
decode);
- } else phpdbg_error("\tFailed to decode opline @ %ld", opline);
+ } else phpdbg_error("\tFailed to decode opline %16p", opline);
free(decode);
opline++;
} while (++opcode < end);