From: Justin Pettit Date: Fri, 9 Apr 2010 00:53:58 +0000 (-0700) Subject: vswitch: Mark bridge_update_desc argument as unused X-Git-Tag: v1.0.0~184 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=6501fda909c3f70fb8df171003af32956d05fc43;p=sliver-openvswitch.git vswitch: Mark bridge_update_desc argument as unused The implementation of bridge_update_desc() is empty, which causes a compiler warning for the argument. Mark the argument unused until we get a chance to fix the function's implementation. --- diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index 5a64d8676..620689fcf 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -1291,7 +1291,7 @@ check_duplicate_ifaces(struct bridge *br, struct iface *iface, void *ifaces_) } static void -bridge_update_desc(struct bridge *br) +bridge_update_desc(struct bridge *br OVS_UNUSED) { #if 0 bool changed = false;