Changeset: bf3fe24a6f9e for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=bf3fe24a6f9e
Modified Files:
        sql/backends/monet5/iot/petrinet.c
Branch: iot
Log Message:

Silence OS X compiler by initialising variable.


diffs (21 lines):

diff --git a/sql/backends/monet5/iot/petrinet.c 
b/sql/backends/monet5/iot/petrinet.c
--- a/sql/backends/monet5/iot/petrinet.c
+++ b/sql/backends/monet5/iot/petrinet.c
@@ -564,7 +564,7 @@ wrapup:
 
 str PNinputplaces(bat *schemaId, bat *tableId, bat *modnameId, bat *fcnnameId)
 {
-       BAT *schema, *table, *modname = NULL, *fcnname = NULL;
+       BAT *schema, *table = NULL, *modname = NULL, *fcnname = NULL;
        int i,j;
 
        schema = BATnew(TYPE_void, TYPE_str, BATTINY, TRANSIENT);
@@ -615,7 +615,7 @@ wrapup:
 
 str PNoutputplaces(bat *schemaId, bat *tableId, bat *modnameId, bat *fcnnameId)
 {
-       BAT *schema, *table, *modname = NULL, *fcnname = NULL;
+       BAT *schema, *table = NULL, *modname = NULL, *fcnname = NULL;
        int i,j;
 
        schema = BATnew(TYPE_void, TYPE_str, BATTINY, TRANSIENT);
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to