summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/phpdbg_list.h
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2016-12-22 14:32:02 +0100
committerAnatol Belski <ab@php.net>2016-12-22 14:32:02 +0100
commitafb6ca2566691a673b7e638ffd7e3181e21d80a3 (patch)
tree43ec7c52c51ac2b3245c7d2c45466a220f6908eb /sapi/phpdbg/phpdbg_list.h
parentce97ead3997c238f1566ee472ebc9b77e62124a5 (diff)
downloadphp-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.h6
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 */