From: Ard Biesheuvel Date: Mon, 23 Feb 2004 01:53:39 +0000 (+0000) Subject: 64-bit fix X-Git-Tag: RELEASE_0_2_0~225 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=29053cc6d5391a0f17a54e9e42c46e1089b68b76;p=php 64-bit fix --- diff --git a/ext/spl/spl_iterators.h b/ext/spl/spl_iterators.h index f23222159d..b695334b03 100755 --- a/ext/spl/spl_iterators.h +++ b/ext/spl/spl_iterators.h @@ -71,8 +71,8 @@ typedef struct _spl_dual_it_object { dual_it_type dit_type; union { struct { - int offset; - int count; + long offset; + long count; } limit; struct { int flags; /* CIT_HAS_MORE, CIT_CALL_TOSTRING, CIT_CATCH_GET_CHILD */