From owner-svn-src-all@FreeBSD.ORG Tue Apr 7 19:35:21 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 46770106568E; Tue, 7 Apr 2009 19:35:21 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 34D118FC17; Tue, 7 Apr 2009 19:35:21 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n37JZLDa023550; Tue, 7 Apr 2009 19:35:21 GMT (envelope-from ed@svn.freebsd.org) Received: (from ed@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n37JZL3x023549; Tue, 7 Apr 2009 19:35:21 GMT (envelope-from ed@svn.freebsd.org) Message-Id: <200904071935.n37JZL3x023549@svn.freebsd.org> From: Ed Schouten Date: Tue, 7 Apr 2009 19:35:21 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r190818 - head/sys/net X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Apr 2009 19:35:22 -0000 Author: ed Date: Tue Apr 7 19:35:20 2009 New Revision: 190818 URL: http://svn.freebsd.org/changeset/base/190818 Log: Add parentheses to under-parenthesized macro. Submitted by: Christoph Mallon Modified: head/sys/net/if_spppsubr.c Modified: head/sys/net/if_spppsubr.c ============================================================================== --- head/sys/net/if_spppsubr.c Tue Apr 7 19:31:36 2009 (r190817) +++ head/sys/net/if_spppsubr.c Tue Apr 7 19:35:20 2009 (r190818) @@ -239,7 +239,7 @@ struct cp { #define SPPP_LOCK(sp) mtx_lock (&(sp)->mtx) #define SPPP_UNLOCK(sp) mtx_unlock (&(sp)->mtx) #define SPPP_LOCK_ASSERT(sp) mtx_assert (&(sp)->mtx, MA_OWNED) -#define SPPP_LOCK_OWNED(sp) mtx_owned (&sp->mtx) +#define SPPP_LOCK_OWNED(sp) mtx_owned (&(sp)->mtx) #ifdef INET /*