diff options
author | Anatol Belski <ab@php.net> | 2016-12-22 14:32:02 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2016-12-22 14:32:02 +0100 |
commit | afb6ca2566691a673b7e638ffd7e3181e21d80a3 (patch) | |
tree | 43ec7c52c51ac2b3245c7d2c45466a220f6908eb /sapi/phpdbg/phpdbg_bp.h | |
parent | ce97ead3997c238f1566ee472ebc9b77e62124a5 (diff) | |
download | php-git-afb6ca2566691a673b7e638ffd7e3181e21d80a3.tar.gz |
Finish remaining replacement uint => uint32_t
Tthe core should be normalized now, no uints anymore
Diffstat (limited to 'sapi/phpdbg/phpdbg_bp.h')
-rw-r--r-- | sapi/phpdbg/phpdbg_bp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg_bp.h b/sapi/phpdbg/phpdbg_bp.h index 7daafe48c1..4a1f6434bc 100644 --- a/sapi/phpdbg/phpdbg_bp.h +++ b/sapi/phpdbg/phpdbg_bp.h @@ -121,7 +121,7 @@ typedef struct _phpdbg_breakcond_t { PHPDBG_API void phpdbg_resolve_op_array_breaks(zend_op_array *op_array); PHPDBG_API int phpdbg_resolve_op_array_break(phpdbg_breakopline_t *brake, zend_op_array *op_array); PHPDBG_API int phpdbg_resolve_opline_break(phpdbg_breakopline_t *new_break); -PHPDBG_API HashTable *phpdbg_resolve_pending_file_break_ex(const char *file, uint filelen, zend_string *cur, HashTable *fileht); +PHPDBG_API HashTable *phpdbg_resolve_pending_file_break_ex(const char *file, uint32_t filelen, zend_string *cur, HashTable *fileht); PHPDBG_API void phpdbg_resolve_pending_file_break(const char *file); /* }}} */ /* {{{ Breakpoint Creation API */ |