Skip to content

Commit c8448d7

Browse files
committed
- Fix typo
1 parent b1dab16 commit c8448d7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

phpdbg.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ static inline int php_sapi_phpdbg_ub_write(const char *message, unsigned int len
344344
static inline void php_sapi_phpdbg_flush(void *context) /* {{{ */
345345
{
346346
TSRMLS_FETCH();
347-
347+
348348
fflush(PHPDBG_G(io)[PHPDBG_STDOUT]);
349349
} /* }}} */
350350

@@ -444,17 +444,17 @@ static void phpdbg_welcome(zend_bool cleaning TSRMLS_DC) /* {{{ */
444444
static inline void phpdbg_sigint_handler(int signo) /* {{{ */
445445
{
446446
TSRMLS_FETCH();
447-
447+
448448
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 */
450450
if (!(PHPDBG_G(flags) & PHPDBG_IS_INTERACTIVE)) {
451451
PHPDBG_G(flags) |= PHPDBG_IS_SIGNALED;
452452
}
453453
} else {
454454
/* if we are not executing then just provide advice */
455455
phpdbg_writeln(EMPTY);
456456
phpdbg_error(
457-
"Please leave phpdbg gracefully !");
457+
"Please leave phpdbg gracefully!");
458458
}
459459
} /* }}} */
460460

@@ -735,7 +735,7 @@ int main(int argc, char **argv) /* {{{ */
735735
if (ini_entries) {
736736
free(ini_entries);
737737
}
738-
738+
739739
if (ini_override) {
740740
free(ini_override);
741741
}

0 commit comments

Comments
 (0)