Eric Blake wrote: > I think it is worth applying, after addressing any nits.
Applied, with the change that you mentioned: > > + stream->_flags &= ~__SOPT; > > + stream->_flags |= __SNPT; > > Is it more efficient to write it like this? > stream->_flags = (stream->_flags & ~__SOPT) | __SNPT; gcc generates identical code for both. But why not? Bruno
