Update of /cvsroot/monetdb/sql/src/storage/restrict
In directory 
sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv22956/sql/src/storage/restrict

Modified Files:
        restrict_table.mx 
Log Message:
Add some casts.

Index: restrict_table.mx
===================================================================
RCS file: /cvsroot/monetdb/sql/src/storage/restrict/restrict_table.mx,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- restrict_table.mx   28 Nov 2009 19:58:03 -0000      1.7
+++ restrict_table.mx   7 Jan 2010 13:12:17 -0000       1.8
@@ -261,8 +261,8 @@
 static oid 
 rids_next(rids *r)
 {
-       if (r->cur < BATcount(r->data)) {
-               BATiter bi = bat_iterator(r->data);
+       if (r->cur < BATcount((BAT *) r->data)) {
+               BATiter bi = bat_iterator((BAT *) r->data);
                return *(oid*)BUNhead(bi, r->cur++);
        }
        return oid_nil;


------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to