mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00
Do not mix long and int
This commit is contained in:
parent
ce05e41c14
commit
cc51537e5e
2 changed files with 2 additions and 2 deletions
|
@ -87,7 +87,7 @@ struct _phpdbg_command_t {
|
||||||
#define PHPDBG_EX(v) (EG(current_execute_data)->v)
|
#define PHPDBG_EX(v) (EG(current_execute_data)->v)
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
long num;
|
int num;
|
||||||
zend_execute_data *execute_data;
|
zend_execute_data *execute_data;
|
||||||
} phpdbg_frame_t;
|
} phpdbg_frame_t;
|
||||||
/* }}} */
|
/* }}} */
|
||||||
|
|
|
@ -458,7 +458,7 @@ PHPDBG_COMMAND(frame) /* {{{ */
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case EMPTY_PARAM:
|
case EMPTY_PARAM:
|
||||||
phpdbg_notice("Currently at frame %ld:", PHPDBG_G(frame).num);
|
phpdbg_notice("Currently in frame #%d", PHPDBG_G(frame).num);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
phpdbg_default_switch_case();
|
phpdbg_default_switch_case();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue