File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -344,7 +344,7 @@ static inline int php_sapi_phpdbg_ub_write(const char *message, unsigned int len
344
344
static inline void php_sapi_phpdbg_flush (void * context ) /* {{{ */
345
345
{
346
346
TSRMLS_FETCH ();
347
-
347
+
348
348
fflush (PHPDBG_G (io )[PHPDBG_STDOUT ]);
349
349
} /* }}} */
350
350
@@ -444,17 +444,17 @@ static void phpdbg_welcome(zend_bool cleaning TSRMLS_DC) /* {{{ */
444
444
static inline void phpdbg_sigint_handler (int signo ) /* {{{ */
445
445
{
446
446
TSRMLS_FETCH ();
447
-
447
+
448
448
if (EG (in_execution )) {
449
- /* we don't want to set signalled while phpdbg is interactive */
449
+ /* we don't want to set signalled while phpdbg is not interactive */
450
450
if (!(PHPDBG_G (flags ) & PHPDBG_IS_INTERACTIVE )) {
451
451
PHPDBG_G (flags ) |= PHPDBG_IS_SIGNALED ;
452
452
}
453
453
} else {
454
454
/* if we are not executing then just provide advice */
455
455
phpdbg_writeln (EMPTY );
456
456
phpdbg_error (
457
- "Please leave phpdbg gracefully !" );
457
+ "Please leave phpdbg gracefully!" );
458
458
}
459
459
} /* }}} */
460
460
@@ -735,7 +735,7 @@ int main(int argc, char **argv) /* {{{ */
735
735
if (ini_entries ) {
736
736
free (ini_entries );
737
737
}
738
-
738
+
739
739
if (ini_override ) {
740
740
free (ini_override );
741
741
}
You can’t perform that action at this time.
0 commit comments