diff options
author | Moriyoshi Koizumi <moriyoshi@php.net> | 2003-03-28 17:09:04 +0000 |
---|---|---|
committer | Moriyoshi Koizumi <moriyoshi@php.net> | 2003-03-28 17:09:04 +0000 |
commit | e1eb238cf22ba9511ad99bb60dd9c811ad7767e2 (patch) | |
tree | fcb44a09d5bd19831291f5212f51012fa0aa8a6d /main/php_variables.c | |
parent | 0e732754294541f2ef8f09696991eda9d9f329f5 (diff) | |
download | php-git-e1eb238cf22ba9511ad99bb60dd9c811ad7767e2.tar.gz |
On 64bit platforms, pointers are 64bit long..
Diffstat (limited to 'main/php_variables.c')
-rw-r--r-- | main/php_variables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_variables.c b/main/php_variables.c index 4be4d242b6..ced5fe0158 100644 --- a/main/php_variables.c +++ b/main/php_variables.c @@ -347,7 +347,7 @@ void _php_import_environment_variables(zval *array_ptr TSRMLS_DC) char buf[128]; char **env, *p, *t = buf; size_t alloc_size = sizeof(buf); - unsigned int nlen; /* ptrdiff_t is not portable */ + unsigned long nlen; /* ptrdiff_t is not portable */ /* turn off magic_quotes while importing environment variables */ int magic_quotes_gpc = PG(magic_quotes_gpc); |