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

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

Index: bat_table.mx
===================================================================
RCS file: /cvsroot/monetdb/sql/src/storage/bat/bat_table.mx,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- bat_table.mx        12 Sep 2009 20:40:45 -0000      1.41
+++ bat_table.mx        7 Jan 2010 13:12:16 -0000       1.42
@@ -360,8 +360,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