Re: [PATCH] prims: Bit-and the flags instead of using boolean operation
Paolo Bonzini <[email protected]>
| Newsgroups | gmane.comp.lang.smalltalk.gnu.general |
|---|---|
| Message-ID | <[email protected]> |
Il 13/09/2014 20:25, Holger Hans Peter Freyther ha scritto: > - access = TO_INT (oopVec[2]) && (O_RDONLY | O_WRONLY | O_RDWR); > + access = TO_INT (oopVec[2]) & (O_RDONLY | O_WRONLY | O_RDWR); > } Of course... Paolo