summaryrefslogtreecommitdiff
path: root/lib/rtbsd.h
diff options
context:
space:
mode:
authorThomas Graf <tgraf@noironetworks.com>2014-12-15 14:10:38 +0100
committerThomas Graf <tgraf@noironetworks.com>2014-12-15 14:15:12 +0100
commitca6ba70092b1528e12d3140d70232175a13c335d (patch)
tree49c4bab3a1745a6d618582096e27b9ffaf8d8ffa /lib/rtbsd.h
parent8c7be52d10a1e9a4745249a4a94540df13d847a3 (diff)
downloadopenvswitch-ca6ba70092b1528e12d3140d70232175a13c335d.tar.gz
list: Rename struct list to struct ovs_list
struct list is a common name and can't be used in public headers. Signed-off-by: Thomas Graf <tgraf@noironetworks.com> Acked-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'lib/rtbsd.h')
-rw-r--r--lib/rtbsd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rtbsd.h b/lib/rtbsd.h
index 60bfae985..5dfbaffcc 100644
--- a/lib/rtbsd.h
+++ b/lib/rtbsd.h
@@ -44,7 +44,7 @@ struct rtbsd_change {
typedef void rtbsd_notify_func(const struct rtbsd_change *, void *aux);
struct rtbsd_notifier {
- struct list node;
+ struct ovs_list node;
rtbsd_notify_func *cb;
void *aux;
};