Changeset: 88982d4339ed for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=88982d4339ed
Modified Files:
        monetdb5/extras/rapi/converters.h
Branch: embedded
Log Message:

mc


diffs (29 lines):

diff --git a/monetdb5/extras/rapi/converters.h 
b/monetdb5/extras/rapi/converters.h
--- a/monetdb5/extras/rapi/converters.h
+++ b/monetdb5/extras/rapi/converters.h
@@ -76,7 +76,7 @@
        } while (0)
 
 
-SEXP bat_to_sexp(BAT* b) {
+static SEXP bat_to_sexp(BAT* b) {
        SEXP varvalue = NULL;
        switch (ATOMstorage(getColumnType(b->T->type))) {
                case TYPE_bte:
@@ -116,7 +116,7 @@ SEXP bat_to_sexp(BAT* b) {
        return varvalue;
 }
 
-BAT* sexp_to_bat(SEXP s, int type) {
+static BAT* sexp_to_bat(SEXP s, int type) {
        BAT* b;
        BUN cnt = LENGTH(s);
        int i, j;
@@ -197,6 +197,7 @@ BAT* sexp_to_bat(SEXP s, int type) {
                }
                break;
        }
+       }
 
        if (b != NULL) {
                BATsetcount(b, cnt);
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to