X-Git-Url: http://git.cascardo.eti.br/?a=blobdiff_plain;f=ovsdb%2Ftransaction.c;h=9e039635023e5ca338218e8acabedc45e7f702bb;hb=ca6ba70092b1528e12d3140d70232175a13c335d;hp=c620dee97a22c0e332f2d051fbd4be14b3efacc3;hpb=8c7be52d10a1e9a4745249a4a94540df13d847a3;p=cascardo%2Fovs.git diff --git a/ovsdb/transaction.c b/ovsdb/transaction.c index c620dee97..9e0396350 100644 --- a/ovsdb/transaction.c +++ b/ovsdb/transaction.c @@ -31,13 +31,13 @@ struct ovsdb_txn { struct ovsdb *db; - struct list txn_tables; /* Contains "struct ovsdb_txn_table"s. */ + struct ovs_list txn_tables; /* Contains "struct ovsdb_txn_table"s. */ struct ds comment; }; /* A table modified by a transaction. */ struct ovsdb_txn_table { - struct list node; /* Element in ovsdb_txn's txn_tables list. */ + struct ovs_list node; /* Element in ovsdb_txn's txn_tables list. */ struct ovsdb_table *table; struct hmap txn_rows; /* Contains "struct ovsdb_txn_row"s. */