lib: Move vlog.h to <openvswitch/vlog.h>
[cascardo/ovs.git] / lib / ovsdb-idl.c
index 4f6a2ed..9c25dbc 100644 (file)
@@ -34,7 +34,7 @@
 #include "poll-loop.h"
 #include "shash.h"
 #include "util.h"
-#include "vlog.h"
+#include "openvswitch/vlog.h"
 
 VLOG_DEFINE_THIS_MODULE(ovsdb_idl);
 
@@ -65,8 +65,8 @@ COVERAGE_DEFINE(txn_error);
  * tables.
  */
 struct ovsdb_idl_arc {
-    struct list src_node;       /* In src->src_arcs list. */
-    struct list dst_node;       /* In dst->dst_arcs list. */
+    struct ovs_list src_node;   /* In src->src_arcs list. */
+    struct ovs_list dst_node;   /* In dst->dst_arcs list. */
     struct ovsdb_idl_row *src;  /* Source row. */
     struct ovsdb_idl_row *dst;  /* Destination row. */
 };