]> granicus.if.org Git - php/commitdiff
MFH: Fix potential problem for 64-bit architectures.
authorfoobar <sniper@php.net>
Fri, 24 Jan 2003 10:00:18 +0000 (10:00 +0000)
committerfoobar <sniper@php.net>
Fri, 24 Jan 2003 10:00:18 +0000 (10:00 +0000)
ext/standard/file.c

index fd9690043cc5eb55251ee57e6107e9f876864b1b..804ec8486e6c8f484695e28d2638084c55f280e6 100644 (file)
@@ -1446,7 +1446,8 @@ PHP_FUNCTION(fscanf)
 {
        int  result;
        zval **file_handle, **format_string;
-       int len, type;
+       size_t len;
+       int type;
        char *buf;
        void *what;