Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 23 Dec 2012 18:35:43 +0000 (UTC)
From:      "Alexander V. Chernikov" <melifaro@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r244634 - head/sys/netpfil/ipfw
Message-ID:  <201212231835.qBNIZht9046138@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: melifaro
Date: Sun Dec 23 18:35:42 2012
New Revision: 244634
URL: http://svnweb.freebsd.org/changeset/base/244634

Log:
  Add parentheses to IP_FW_ARG_TABLEARG() definition.
  
  Suggested by:	glebius
  MFC with:	r244633

Modified:
  head/sys/netpfil/ipfw/ip_fw_private.h

Modified: head/sys/netpfil/ipfw/ip_fw_private.h
==============================================================================
--- head/sys/netpfil/ipfw/ip_fw_private.h	Sun Dec 23 16:28:18 2012	(r244633)
+++ head/sys/netpfil/ipfw/ip_fw_private.h	Sun Dec 23 18:35:42 2012	(r244634)
@@ -259,7 +259,7 @@ struct sockopt;	/* used by tcp_var.h */
 	(_cntr)->bcnt = 0;				\
 	} while (0)
 
-#define	IP_FW_ARG_TABLEARG(a)	((a) == IP_FW_TABLEARG) ? tablearg : (a)
+#define	IP_FW_ARG_TABLEARG(a)	(((a) == IP_FW_TABLEARG) ? tablearg : (a))
 /*
  * The lock is heavily used by ip_fw2.c (the main file) and ip_fw_nat.c
  * so the variable and the macros must be here.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201212231835.qBNIZht9046138>