From owner-svn-soc-all@FreeBSD.ORG Thu Jun 28 20:01:37 2012 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 99D331065767 for ; Thu, 28 Jun 2012 20:01:36 +0000 (UTC) (envelope-from gmiller@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Thu, 28 Jun 2012 20:01:36 +0000 Date: Thu, 28 Jun 2012 20:01:36 +0000 From: gmiller@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20120628200136.99D331065767@hub.freebsd.org> Cc: Subject: socsvn commit: r238503 - in soc2012/gmiller/locking-head: . lib/libwitness X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Jun 2012 20:01:37 -0000 Author: gmiller Date: Thu Jun 28 20:01:36 2012 New Revision: 238503 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=238503 Log: r238484@FreeBSD-dev: root | 2012-06-20 04:24:28 -0500 Style fix for return values. Modified: soc2012/gmiller/locking-head/ (props changed) soc2012/gmiller/locking-head/lib/libwitness/wrappers.c Modified: soc2012/gmiller/locking-head/lib/libwitness/wrappers.c ============================================================================== --- soc2012/gmiller/locking-head/lib/libwitness/wrappers.c Thu Jun 28 20:01:25 2012 (r238502) +++ soc2012/gmiller/locking-head/lib/libwitness/wrappers.c Thu Jun 28 20:01:36 2012 (r238503) @@ -42,7 +42,7 @@ add_lock(mutex); } - return ret; + return (ret); } int @@ -55,5 +55,5 @@ remove_lock(mutex); } - return ret; + return (ret); }