From: Felipe Pena Date: Sat, 23 Nov 2013 16:45:03 +0000 (-0200) Subject: - Fix typo X-Git-Tag: php-5.6.0alpha1~110^2~125^2~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c8448d7e064689a7cc068ae188b284e9af89412e;p=php - Fix typo --- 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); }