abies Sun Feb 22 20:53:39 2004 EDT Modified files: /php-src/ext/spl spl_iterators.h Log: 64-bit fix http://cvs.php.net/diff.php/php-src/ext/spl/spl_iterators.h?r1=1.7&r2=1.8&ty=u Index: php-src/ext/spl/spl_iterators.h diff -u php-src/ext/spl/spl_iterators.h:1.7 php-src/ext/spl/spl_iterators.h:1.8 --- php-src/ext/spl/spl_iterators.h:1.7 Tue Jan 20 15:59:45 2004 +++ php-src/ext/spl/spl_iterators.h Sun Feb 22 20:53:39 2004 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: spl_iterators.h,v 1.7 2004/01/20 20:59:45 helly Exp $ */ +/* $Id: spl_iterators.h,v 1.8 2004/02/23 01:53:39 abies Exp $ */ #ifndef SPL_ITERATORS_H #define SPL_ITERATORS_H @@ -71,8 +71,8 @@ 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 */
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php