]> gitweb.factorcode.org Git - factor.git/commitdiff
fix compiler warning on linux
authorSlava Pestov <slava@factorcode.org>
Sun, 13 Dec 2009 22:10:30 +0000 (16:10 -0600)
committerSlava Pestov <slava@factorcode.org>
Sun, 13 Dec 2009 22:10:30 +0000 (16:10 -0600)
vm/code_blocks.hpp

index 8aa8b5693fa0be90924af00cade8fad9c4c1d5e9..075fe389b4cea78ea9099b064e1bfe6461dd7d28 100644 (file)
@@ -11,7 +11,7 @@ struct code_block
 
        bool free_p() const
        {
-               return header & 1 == 1;
+               return (header & 1) == 1;
        }
 
        code_block_type type() const