Changeset: b62008654fe6 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=b62008654fe6
Modified Files:
        gdk/gdk_bat.c
Branch: default
Log Message:

Add some casts.


diffs (30 lines):

diff --git a/gdk/gdk_bat.c b/gdk/gdk_bat.c
--- a/gdk/gdk_bat.c
+++ b/gdk/gdk_bat.c
@@ -1945,7 +1945,7 @@ BATsetaccess(BAT *b, restrict_t newmode)
                if (VIEWreset(b) != GDK_SUCCEED)
                        return GDK_FAIL;
        }
-       bakmode = b->batRestricted;
+       bakmode = (restrict_t) b->batRestricted;
        bakdirty = b->batDirtydesc;
        if (bakmode != newmode || (b->batSharecnt && newmode != BAT_READ)) {
                bool existing = (BBP_status(b->batCacheid) & BBPEXISTING) != 0;
@@ -1972,7 +1972,7 @@ BATsetaccess(BAT *b, restrict_t newmode)
                        return GDK_FAIL;
 
                /* set new access mode and mmap modes */
-               b->batRestricted = newmode;
+               b->batRestricted = (unsigned int) newmode;
                b->batDirtydesc = true;
                b->theap.newstorage = m1;
                if (b->tvheap)
@@ -1980,7 +1980,7 @@ BATsetaccess(BAT *b, restrict_t newmode)
 
                if (existing && BBPsave(b) != GDK_SUCCEED) {
                        /* roll back all changes */
-                       b->batRestricted = bakmode;
+                       b->batRestricted = (unsigned int) bakmode;
                        b->batDirtydesc = bakdirty;
                        b->theap.newstorage = b1;
                        if (b->tvheap)
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to