Changeset: 0002115dd140 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=0002115dd140
Modified Files:
sql/backends/monet5/sql.c
Branch: monetdbe-proxy
Log Message:
Fix another casting issue.
diffs (12 lines):
diff --git a/sql/backends/monet5/sql.c b/sql/backends/monet5/sql.c
--- a/sql/backends/monet5/sql.c
+++ b/sql/backends/monet5/sql.c
@@ -298,7 +298,7 @@ SQLset_protocol(Client cntxt, MalBlkPtr
return createException(SQL, "sql.set_protocol", "unknown
protocol: %d", protocol);
}
- *getArgReference_int(stk, pci, 0) = (cntxt->protocol = protocol);
+ *getArgReference_int(stk, pci, 0) = (cntxt->protocol =
(protocol_version) protocol);
return MAL_SUCCEED;
}
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list