diff options
Diffstat (limited to 'sapi/cli/php_cli.c')
-rw-r--r-- | sapi/cli/php_cli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index 2816e67885..45fa019b8a 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -1131,7 +1131,7 @@ int main(int argc, char *argv[]) } if (interactive && cli_shell_callbacks.cli_shell_run) { - exit_status = cli_shell_callbacks.cli_shell_run(); + exit_status = cli_shell_callbacks.cli_shell_run(TSRMLS_C); } else { php_execute_script(&file_handle TSRMLS_CC); exit_status = EG(exit_status); |