diff options
author | Derick Rethans <derick@php.net> | 2005-03-17 07:31:22 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2005-03-17 07:31:22 +0000 |
commit | 42b9b26e458a32a54e0b640f9428a35fecd48ab5 (patch) | |
tree | 7cfa57bab55a0d7ffaf1ae7ed9bdf01606e03a5e /sapi/cli/php_cli.c | |
parent | e5f7f63d368ad21f76fb7cc585cdff32106b061c (diff) | |
download | php-git-42b9b26e458a32a54e0b640f9428a35fecd48ab5.tar.gz |
- ZTS fixes
#- Andrei, it would be nice if you could test ZTS builds too before you
# commit...
Diffstat (limited to 'sapi/cli/php_cli.c')
-rw-r--r-- | sapi/cli/php_cli.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index be00a4c14e..aab039a8f6 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -395,7 +395,7 @@ static void php_cli_usage(char *argv0) } /* }}} */ -static void define_command_line_ini_entry(char *arg) +static void define_command_line_ini_entry(char *arg TSRMLS_DC) { char *name, *value; @@ -661,7 +661,7 @@ int main(int argc, char *argv[]) switch (c) { case 'd': /* define ini entries on command line */ - define_command_line_ini_entry(php_optarg); + define_command_line_ini_entry(php_optarg TSRMLS_CC); break; case 'h': /* help & quit */ |