From c8448d7e064689a7cc068ae188b284e9af89412e Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Sat, 23 Nov 2013 14:45:03 -0200 Subject: [PATCH] - Fix typo --- phpdbg.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/phpdbg.c b/phpdbg.c index bdb6c81073..4650f58449 100644 --- a/phpdbg.c +++ b/phpdbg.c @@ -344,7 +344,7 @@ static inline int php_sapi_phpdbg_ub_write(const char *message, unsigned int len static inline void php_sapi_phpdbg_flush(void *context) /* {{{ */ { TSRMLS_FETCH(); - + fflush(PHPDBG_G(io)[PHPDBG_STDOUT]); } /* }}} */ @@ -444,9 +444,9 @@ static void phpdbg_welcome(zend_bool cleaning TSRMLS_DC) /* {{{ */ static inline void phpdbg_sigint_handler(int signo) /* {{{ */ { TSRMLS_FETCH(); - + if (EG(in_execution)) { - /* we don't want to set signalled while phpdbg is interactive */ + /* we don't want to set signalled while phpdbg is not interactive */ if (!(PHPDBG_G(flags) & PHPDBG_IS_INTERACTIVE)) { PHPDBG_G(flags) |= PHPDBG_IS_SIGNALED; } @@ -454,7 +454,7 @@ static inline void phpdbg_sigint_handler(int signo) /* {{{ */ /* if we are not executing then just provide advice */ phpdbg_writeln(EMPTY); phpdbg_error( - "Please leave phpdbg gracefully !"); + "Please leave phpdbg gracefully!"); } } /* }}} */ @@ -735,7 +735,7 @@ phpdbg_out: if (ini_entries) { free(ini_entries); } - + if (ini_override) { free(ini_override); } -- 2.50.1