From: Anatol Belski Date: Wed, 17 Sep 2014 07:10:26 +0000 (+0200) Subject: reduce the struct size by 8 byte on 64 bit X-Git-Tag: POST_NATIVE_TLS_MERGE^2~242 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=efc12d468c9be20ac0c24ff69c32613caf91a6ed;p=php reduce the struct size by 8 byte on 64 bit --- diff --git a/ext/spl/spl_dllist.c b/ext/spl/spl_dllist.c index e02b9b2e83..1bd4bf49d5 100644 --- a/ext/spl/spl_dllist.c +++ b/ext/spl/spl_dllist.c @@ -101,8 +101,8 @@ struct _spl_dllist_object { /* define an overloaded iterator structure */ struct _spl_dllist_it { zend_user_iterator intern; - int traverse_position; spl_ptr_llist_element *traverse_pointer; + int traverse_position; int flags; };