From: Justin Pettit Date: Tue, 4 Aug 2009 22:15:48 +0000 (-0700) Subject: ovs-dpctl: Remove UNUSED attributed in do_show X-Git-Tag: v0.90.5~61 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=c4fca56af2c5cfc8ecfb33648bf4722d3bec5388;p=sliver-openvswitch.git ovs-dpctl: Remove UNUSED attributed in do_show The do_show() function declared the argc argument as UNUSED, but it always is. --- diff --git a/utilities/ovs-dpctl.c b/utilities/ovs-dpctl.c index 12960626c..886cdb3ac 100644 --- a/utilities/ovs-dpctl.c +++ b/utilities/ovs-dpctl.c @@ -427,7 +427,7 @@ show_dpif(struct dpif *dpif) } static void -do_show(int argc UNUSED, char *argv[]) +do_show(int argc, char *argv[]) { bool failure = false; if (argc > 1) {