From: Justin Pettit Date: Tue, 4 Aug 2009 22:15:48 +0000 (-0700) Subject: ovs-dpctl: Remove UNUSED attributed in do_show X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c4fca56af2c5cfc8ecfb33648bf4722d3bec5388;p=openvswitch 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 12960626..886cdb3a 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) {