From 9aea9970bbcb6d2a6d8b67c26ac22cf7b8fc4baa Mon Sep 17 00:00:00 2001 From: foobar Date: Fri, 24 Jan 2003 10:00:18 +0000 Subject: [PATCH] MFH: Fix potential problem for 64-bit architectures. --- ext/standard/file.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ext/standard/file.c b/ext/standard/file.c index fd9690043c..804ec8486e 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -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; -- 2.50.1