X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=ovsdb%2Ftable.c;h=5e83683b7bf4d6be348b012e0d35d117906f0f09;hb=81158e4f4a7071c689aac7ac4fb1389c8e8d3875;hp=6a4e7ae2f4fc5a6f232754e9aaea7b3205c42df8;hpb=87ab878cadeb8cf5f8f89a7d00bfc64ee6b4edbf;p=openvswitch diff --git a/ovsdb/table.c b/ovsdb/table.c index 6a4e7ae2..5e83683b 100644 --- a/ovsdb/table.c +++ b/ovsdb/table.c @@ -210,8 +210,7 @@ ovsdb_table_destroy(struct ovsdb_table *table) if (table) { struct ovsdb_row *row, *next; - HMAP_FOR_EACH_SAFE (row, next, struct ovsdb_row, hmap_node, - &table->rows) { + HMAP_FOR_EACH_SAFE (row, next, hmap_node, &table->rows) { ovsdb_row_destroy(row); } hmap_destroy(&table->rows); @@ -226,8 +225,7 @@ ovsdb_table_get_row(const struct ovsdb_table *table, const struct uuid *uuid) { struct ovsdb_row *row; - HMAP_FOR_EACH_WITH_HASH (row, struct ovsdb_row, hmap_node, uuid_hash(uuid), - &table->rows) { + HMAP_FOR_EACH_WITH_HASH (row, hmap_node, uuid_hash(uuid), &table->rows) { if (uuid_equals(ovsdb_row_get_uuid(row), uuid)) { return row; }