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_list.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_list.h')
-rw-r--r-- | sapi/phpdbg/phpdbg_list.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sapi/phpdbg/phpdbg_list.h b/sapi/phpdbg/phpdbg_list.h index 9adb69b6c9..2768a42ddd 100644 --- a/sapi/phpdbg/phpdbg_list.h +++ b/sapi/phpdbg/phpdbg_list.h @@ -34,7 +34,7 @@ PHPDBG_LIST(func); void phpdbg_list_function_byname(const char *, size_t); void phpdbg_list_function(const zend_function *); -void phpdbg_list_file(zend_string *, uint, int, uint); +void phpdbg_list_file(zend_string *, uint32_t, int, uint32_t); extern const phpdbg_command_t phpdbg_list_commands[]; @@ -48,8 +48,8 @@ typedef struct { void *map; #endif zend_op_array op_array; - uint lines; - uint line[1]; + uint32_t lines; + uint32_t line[1]; } phpdbg_file_source; #endif /* PHPDBG_LIST_H */ |