diff options
| author | Wez Furlong <wez@php.net> | 2003-01-18 14:10:22 +0000 |
|---|---|---|
| committer | Wez Furlong <wez@php.net> | 2003-01-18 14:10:22 +0000 |
| commit | 7002a39f97cfe2ca4d104852762de0aec98b88b2 (patch) | |
| tree | 3531f1eb4e833476bd8c7bc0ca22fd292591d3a8 /ext | |
| parent | 39aa3a5d989a5a7b96d672b410279571c56edc25 (diff) | |
| download | php-git-7002a39f97cfe2ca4d104852762de0aec98b88b2.tar.gz | |
Fix potential problem for 64-bit architectures.
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/standard/file.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/standard/file.c b/ext/standard/file.c index 0fc5156c48..dcdd3a9b3e 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -1482,7 +1482,8 @@ PHP_FUNCTION(fscanf) { int result; zval **file_handle, **format_string; - int len, type; + size_t len; + int type; char *buf; void *what; |
