help-smalltalk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Help-smalltalk] [PATCH] prims: Bit-and the flags instead of using b


From: Paolo Bonzini
Subject: Re: [Help-smalltalk] [PATCH] prims: Bit-and the flags instead of using boolean operation
Date: Sun, 14 Sep 2014 16:50:04 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.0

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]