Browse Source

Compiler warning

pull/2768/head
Xinchen Hui 9 years ago
parent
commit
db63367871
  1. 2
      ext/spl/spl_dllist.c

2
ext/spl/spl_dllist.c

@ -733,7 +733,7 @@ SPL_METHOD(SplDoublyLinkedList, setIteratorMode)
return;
}
intern->flags = value & SPL_DLLIST_IT_MASK | intern->flags & SPL_DLLIST_IT_FIX;
intern->flags = (value & SPL_DLLIST_IT_MASK) | (intern->flags & SPL_DLLIST_IT_FIX);
RETURN_LONG(intern->flags);
}

Loading…
Cancel
Save