ovs-dpctl: Remove UNUSED attributed in do_show
authorJustin Pettit <jpettit@nicira.com>
Tue, 4 Aug 2009 22:15:48 +0000 (15:15 -0700)
committerJustin Pettit <jpettit@nicira.com>
Fri, 7 Aug 2009 01:04:36 +0000 (18:04 -0700)
The do_show() function declared the argc argument as UNUSED, but it
always is.

utilities/ovs-dpctl.c

index 1296062..886cdb3 100644 (file)
@@ -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) {