remove the last __unused instance in sbin/ipfw.

This particular function (show_prerequisites() ) we should actually
remove the argument from the callers as well, but i'll do it at a
later time.
This commit is contained in:
Luigi Rizzo 2012-07-30 11:02:22 +00:00
parent 6a7bb02d77
commit a4a16855c3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=238903

View File

@ -976,8 +976,9 @@ print_icmptypes(ipfw_insn_u32 *cmd)
#define HAVE_OPTIONS 0x8000
static void
show_prerequisites(int *flags, int want, int cmd __unused)
show_prerequisites(int *flags, int want, int cmd)
{
(void)cmd; /* UNUSED */
if (co.comment_only)
return;
if ( (*flags & HAVE_IP) == HAVE_IP)