From 3e01f5afb1b52fe26a956190296de0192eedeec1 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Fri, 15 Jan 2021 12:30:54 +0100 Subject: Replace zend_bool uses with bool We're starting to see a mix between uses of zend_bool and bool. Replace all usages with the standard bool type everywhere. Of course, zend_bool is retained as an alias. --- sapi/phpdbg/phpdbg_prompt.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sapi/phpdbg/phpdbg_prompt.h') diff --git a/sapi/phpdbg/phpdbg_prompt.h b/sapi/phpdbg/phpdbg_prompt.h index 2c2c3d2047..e465effb1c 100644 --- a/sapi/phpdbg/phpdbg_prompt.h +++ b/sapi/phpdbg/phpdbg_prompt.h @@ -21,9 +21,9 @@ /* {{{ */ void phpdbg_string_init(char *buffer); -void phpdbg_init(char *init_file, size_t init_file_len, zend_bool use_default); -void phpdbg_try_file_init(char *init_file, size_t init_file_len, zend_bool free_init); -int phpdbg_interactive(zend_bool allow_async_unsafe, char *input); +void phpdbg_init(char *init_file, size_t init_file_len, bool use_default); +void phpdbg_try_file_init(char *init_file, size_t init_file_len, bool free_init); +int phpdbg_interactive(bool allow_async_unsafe, char *input); int phpdbg_compile(void); int phpdbg_compile_stdin(zend_string *code); void phpdbg_force_interruption(void); -- cgit v1.2.1