mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Use size_t for get_ps_title() length parameter
This commit is contained in:
parent
b468d6fb54
commit
9a7d37ac66
3 changed files with 4 additions and 4 deletions
|
@ -46,7 +46,7 @@ PHP_FUNCTION(cli_set_process_title)
|
|||
/* {{{ Return a string with the current process title. NULL if error. */
|
||||
PHP_FUNCTION(cli_get_process_title)
|
||||
{
|
||||
int length = 0;
|
||||
size_t length = 0;
|
||||
const char* title = NULL;
|
||||
int rc;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue