From c4fca56af2c5cfc8ecfb33648bf4722d3bec5388 Mon Sep 17 00:00:00 2001 From: Justin Pettit Date: Tue, 4 Aug 2009 15:15:48 -0700 Subject: [PATCH] ovs-dpctl: Remove UNUSED attributed in do_show The do_show() function declared the argc argument as UNUSED, but it always is. --- utilities/ovs-dpctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.43.0