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

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

Index: bpm_table.mx
===================================================================
RCS file: /cvsroot/monetdb/sql/src/storage/bpm/bpm_table.mx,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- bpm_table.mx        12 Sep 2009 20:40:45 -0000      1.11
+++ bpm_table.mx        7 Jan 2010 13:12:17 -0000       1.12
@@ -294,8 +294,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