Update of /cvsroot/monetdb/MonetDB5/src/modules/mal/crackers
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18249

Modified Files:
        crackers_joins.mx 
Log Message:
Don't redeclare i, and certainly not in a for loop expression.


Index: crackers_joins.mx
===================================================================
RCS file: /cvsroot/monetdb/MonetDB5/src/modules/mal/crackers/crackers_joins.mx,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- crackers_joins.mx   15 Jan 2008 13:03:50 -0000      1.3
+++ crackers_joins.mx   15 Jan 2008 16:34:21 -0000      1.4
@@ -383,7 +383,7 @@
        view = BATslice(b, vl, vh+1);
        viewCount = BATcount(view);
        curViewTupleHead = (oid*)Hloc(view,BUNfirst(view));
-       for (oid i=0;i<viewCount;i++){
+       for (i=0;i<viewCount;i++){
                *currentResTupleHead = *currentTupleLeftHead;   
                *currentResTupleTail = *curViewTupleHead;       
 


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Monetdb-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-checkins

Reply via email to