Changeset: e192175c228f for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/e192175c228f
Modified Files:
        monetdb5/modules/mal/heapn.c
Branch: pp_hashjoin
Log Message:

more casts


diffs (39 lines):

diff --git a/monetdb5/modules/mal/heapn.c b/monetdb5/modules/mal/heapn.c
--- a/monetdb5/modules/mal/heapn.c
+++ b/monetdb5/modules/mal/heapn.c
@@ -125,7 +125,7 @@ subheap_down( heapn *hp, subheap *sh, si
                q = l;
        else if (!sh->min && cmp < 0)
                q = l;
-       return q;
+       return (int)q;
 }
 
 static int
@@ -144,7 +144,7 @@ subheap_up( heapn *hp, subheap *sh, size
                q = p;
        else if (!sh->min && cmp > 0)
                q = p;
-       return q;
+       return (int)q;
 }
 
 static int
@@ -164,7 +164,7 @@ gsubheap_down( heapn *hp, subheap *sh, o
                q = l;
        else if (!sh->min && cmp < 0)
                q = l;
-       return q;
+       return (int)q;
 }
 
 static int
@@ -184,7 +184,7 @@ gsubheap_up( heapn *hp, subheap *sh, oid
                q = p;
        else if (!sh->min && cmp > 0)
                q = p;
-       return q;
+       return (int)q;
 }
 
 
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to