mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
- Fix compiler warning
This commit is contained in:
parent
8c67cf30b5
commit
d13c02bf68
1 changed files with 10 additions and 9 deletions
3
phpdbg.c
3
phpdbg.c
|
@ -19,6 +19,7 @@
|
|||
#include "phpdbg.h"
|
||||
#include "phpdbg_prompt.h"
|
||||
#include "phpdbg_bp.h"
|
||||
#include "phpdbg_break.h"
|
||||
#include "phpdbg_utils.h"
|
||||
|
||||
ZEND_DECLARE_MODULE_GLOBALS(phpdbg);
|
||||
|
@ -167,7 +168,7 @@ static PHP_FUNCTION(phpdbg_break)
|
|||
break;
|
||||
|
||||
default: zend_error(
|
||||
E_WARNING, "unrecognized parameter type %d", type);
|
||||
E_WARNING, "unrecognized parameter type %ld", type);
|
||||
}
|
||||
} else if (EG(current_execute_data) && EG(active_op_array)) {
|
||||
zend_ulong opline_num = (EG(current_execute_data)->opline -
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue