- Fix compiler warning

This commit is contained in:
Felipe Pena 2013-11-12 16:53:48 -02:00
parent 6b3b14e8dd
commit e8cb646fed

View file

@ -385,7 +385,7 @@ void phpdbg_print_breakpoints(zend_ulong type TSRMLS_DC) /* {{{ */
for (zend_hash_internal_pointer_reset_ex(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], &position);
zend_hash_get_current_data_ex(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], (void**) &brake, &position) == SUCCESS;
zend_hash_move_forward_ex(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE], &position)) {
printf("#%d\t\t%p\n", brake->id, brake->opline);
printf("#%d\t\t%#lx\n", brake->id, brake->opline);
}
} break;
}