Changeset: 99a895214174 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=99a895214174
Modified Files:
        MonetDB5/src/optimizer/opt_support.mx
Branch: Jun2010
Log Message:

fix compilation on 64 bits


diffs (14 lines):

diff -r 61c63236a426 -r 99a895214174 MonetDB5/src/optimizer/opt_support.mx
--- a/MonetDB5/src/optimizer/opt_support.mx     Thu Aug 05 22:06:44 2010 +0200
+++ b/MonetDB5/src/optimizer/opt_support.mx     Thu Aug 05 22:08:01 2010 +0200
@@ -1356,8 +1356,9 @@
                return p->value.val.wval;
        if (p->value.vtype == TYPE_lng
 #if SIZEOF_BUN <= SIZEOF_INT
-                   && p->value.val.lval <= BUN_MAX)
+                   && p->value.val.lval <= BUN_MAX
 #endif
+               )
                return (wrd)p->value.val.lval;
        if (p->value.vtype == TYPE_int)
                return p->value.val.ival;
_______________________________________________
Checkin-list mailing list
Checkin-list@monetdb.org
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to