diff options
author | Dmitry Stogov <dmitry@zend.com> | 2014-02-14 14:11:52 +0400 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2014-02-14 14:11:52 +0400 |
commit | a52817eb027f2f90973888f35578d7b9eaf51d10 (patch) | |
tree | 3dbf483190bda4c594803831f64cda1e531bc6aa /sapi/cli/php_cli_process_title.c | |
parent | c56a2344d0c3cd50abfcb7bf24ca2955963f12da (diff) | |
download | php-git-a52817eb027f2f90973888f35578d7b9eaf51d10.tar.gz |
Use better data structures (incomplete)
Diffstat (limited to 'sapi/cli/php_cli_process_title.c')
-rw-r--r-- | sapi/cli/php_cli_process_title.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/cli/php_cli_process_title.c b/sapi/cli/php_cli_process_title.c index dec5613670..298300f065 100644 --- a/sapi/cli/php_cli_process_title.c +++ b/sapi/cli/php_cli_process_title.c @@ -66,7 +66,7 @@ PHP_FUNCTION(cli_get_process_title) RETURN_NULL(); } - RETURN_STRINGL(title, length, 1); + RETURN_STRINGL(title, length); } /* }}} */ |