Skip to content

Commit b0f7344

Browse files
committed
- Fixed typo
1 parent eafaa65 commit b0f7344

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

phpdbg_prompt.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -173,10 +173,10 @@ PHPDBG_COMMAND(exec) /* {{{ */
173173
if (sb.st_mode & (S_IFREG|S_IFLNK)) {
174174
char *res = phpdbg_resolve_path(param->str TSRMLS_CC);
175175
size_t res_len = strlen(res);
176-
177-
if ((res_len != PHPDBG_G(exec_len)) ||
176+
177+
if ((res_len != PHPDBG_G(exec_len)) ||
178178
(memcmp(res, PHPDBG_G(exec), res_len) != SUCCESS)) {
179-
179+
180180
if (PHPDBG_G(exec)) {
181181
phpdbg_notice("Unsetting old execution context: %s", PHPDBG_G(exec));
182182
efree(PHPDBG_G(exec));
@@ -609,7 +609,7 @@ PHPDBG_COMMAND(eval) /* {{{ */
609609
!(PHPDBG_G(flags) & PHPDBG_IS_STEPONEVAL)) {
610610
PHPDBG_G(flags) |= PHPDBG_IS_STEPPING;
611611
}
612-
612+
613613
CG(unclean_shutdown) = 0;
614614
} break;
615615

@@ -1083,7 +1083,7 @@ static inline int phpdbg_call_register(phpdbg_input_t *input TSRMLS_DC) /* {{{ *
10831083
}
10841084

10851085
phpdbg_debug(
1086-
"created %d params from %d argvuments",
1086+
"created %d params from %d arguments",
10871087
fci.param_count, input->argc);
10881088

10891089
zend_call_function(&fci, NULL TSRMLS_CC);

0 commit comments

Comments
 (0)