mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
fix datatype mismatch warning
This commit is contained in:
parent
a6ebaa142e
commit
cd574ca467
1 changed files with 1 additions and 1 deletions
|
@ -1394,7 +1394,7 @@ CWD_API int virtual_chdir(const char *path TSRMLS_DC) /* {{{ */
|
||||||
|
|
||||||
CWD_API int virtual_chdir_file(const char *path, int (*p_chdir)(const char *path TSRMLS_DC) TSRMLS_DC) /* {{{ */
|
CWD_API int virtual_chdir_file(const char *path, int (*p_chdir)(const char *path TSRMLS_DC) TSRMLS_DC) /* {{{ */
|
||||||
{
|
{
|
||||||
int length = strlen(path);
|
int length = (int)strlen(path);
|
||||||
char *temp;
|
char *temp;
|
||||||
int retval;
|
int retval;
|
||||||
ALLOCA_FLAG(use_heap)
|
ALLOCA_FLAG(use_heap)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue