From owner-svn-soc-all@FreeBSD.ORG Wed Apr 29 09:50:23 2015 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E2498DC9 for ; Wed, 29 Apr 2015 09:50:22 +0000 (UTC) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D021216BE for ; Wed, 29 Apr 2015 09:50:22 +0000 (UTC) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3T9oM6w027038 for ; Wed, 29 Apr 2015 09:50:22 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.14.9/8.14.9/Submit) id t3T9oKTJ027013 for svn-soc-all@FreeBSD.org; Wed, 29 Apr 2015 09:50:20 GMT (envelope-from def@FreeBSD.org) Date: Wed, 29 Apr 2015 09:50:20 GMT Message-Id: <201504290950.t3T9oKTJ027013@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r284782 - in soc2013/def/crashdump-head/sys: amd64/amd64 arm/arm ddb i386/i386 mips/mips MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.20 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: Wed, 29 Apr 2015 09:50:23 -0000 Author: def Date: Wed Apr 29 09:50:20 2015 New Revision: 284782 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=284782 Log: Style. Modified: soc2013/def/crashdump-head/sys/amd64/amd64/minidump_machdep.c soc2013/def/crashdump-head/sys/arm/arm/minidump_machdep.c soc2013/def/crashdump-head/sys/ddb/db_textdump.c soc2013/def/crashdump-head/sys/i386/i386/minidump_machdep.c soc2013/def/crashdump-head/sys/mips/mips/minidump_machdep.c Modified: soc2013/def/crashdump-head/sys/amd64/amd64/minidump_machdep.c ============================================================================== --- soc2013/def/crashdump-head/sys/amd64/amd64/minidump_machdep.c Wed Apr 29 09:42:33 2015 (r284781) +++ soc2013/def/crashdump-head/sys/amd64/amd64/minidump_machdep.c Wed Apr 29 09:50:20 2015 (r284782) @@ -49,7 +49,7 @@ #include #include -CTASSERT(sizeof(struct kerneldumpheader) % 512 == 0); +CTASSERT((sizeof(struct kerneldumpheader) % 512) == 0); /* * Don't touch the first SIZEOF_METADATA bytes on the dump device. This Modified: soc2013/def/crashdump-head/sys/arm/arm/minidump_machdep.c ============================================================================== --- soc2013/def/crashdump-head/sys/arm/arm/minidump_machdep.c Wed Apr 29 09:42:33 2015 (r284781) +++ soc2013/def/crashdump-head/sys/arm/arm/minidump_machdep.c Wed Apr 29 09:50:20 2015 (r284782) @@ -50,7 +50,7 @@ #include #include -CTASSERT(sizeof(struct kerneldumpheader) % 512 == 0); +CTASSERT((sizeof(struct kerneldumpheader) % 512) == 0); /* * Don't touch the first SIZEOF_METADATA bytes on the dump device. This Modified: soc2013/def/crashdump-head/sys/ddb/db_textdump.c ============================================================================== --- soc2013/def/crashdump-head/sys/ddb/db_textdump.c Wed Apr 29 09:42:33 2015 (r284781) +++ soc2013/def/crashdump-head/sys/ddb/db_textdump.c Wed Apr 29 09:50:20 2015 (r284782) @@ -113,7 +113,7 @@ * Various size assertions -- pretty much everything must be one block in * size. */ -CTASSERT(sizeof(struct kerneldumpheader) % TEXTDUMP_BLOCKSIZE == 0); +CTASSERT((sizeof(struct kerneldumpheader) % TEXTDUMP_BLOCKSIZE) == 0); CTASSERT(sizeof(struct ustar_header) == TEXTDUMP_BLOCKSIZE); /* Modified: soc2013/def/crashdump-head/sys/i386/i386/minidump_machdep.c ============================================================================== --- soc2013/def/crashdump-head/sys/i386/i386/minidump_machdep.c Wed Apr 29 09:42:33 2015 (r284781) +++ soc2013/def/crashdump-head/sys/i386/i386/minidump_machdep.c Wed Apr 29 09:50:20 2015 (r284782) @@ -45,7 +45,7 @@ #include #include -CTASSERT(sizeof(struct kerneldumpheader) % 512 == 0); +CTASSERT((sizeof(struct kerneldumpheader) % 512) == 0); /* * Don't touch the first SIZEOF_METADATA bytes on the dump device. This Modified: soc2013/def/crashdump-head/sys/mips/mips/minidump_machdep.c ============================================================================== --- soc2013/def/crashdump-head/sys/mips/mips/minidump_machdep.c Wed Apr 29 09:42:33 2015 (r284781) +++ soc2013/def/crashdump-head/sys/mips/mips/minidump_machdep.c Wed Apr 29 09:50:20 2015 (r284782) @@ -47,7 +47,7 @@ #include #include -CTASSERT(sizeof(struct kerneldumpheader) % 512 == 0); +CTASSERT((sizeof(struct kerneldumpheader) % 512) == 0); /* * Don't touch the first SIZEOF_METADATA bytes on the dump device. This