From owner-svn-src-head@freebsd.org Sun Aug 2 11:43:32 2015 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 447279B1A18; Sun, 2 Aug 2015 11:43:32 +0000 (UTC) (envelope-from bzeeb-lists@lists.zabbadoz.net) Received: from mx1.sbone.de (mx1.sbone.de [IPv6:2a01:4f8:130:3ffc::401:25]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "mx1.sbone.de", Issuer "SBone.DE" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 017871F18; Sun, 2 Aug 2015 11:43:31 +0000 (UTC) (envelope-from bzeeb-lists@lists.zabbadoz.net) Received: from mail.sbone.de (mail.sbone.de [IPv6:fde9:577b:c1a9:31::2013:587]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.sbone.de (Postfix) with ESMTPS id 8387A25D3897; Sun, 2 Aug 2015 11:43:28 +0000 (UTC) Received: from content-filter.sbone.de (content-filter.sbone.de [IPv6:fde9:577b:c1a9:31::2013:2742]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.sbone.de (Postfix) with ESMTPS id 701D9C76FD4; Sun, 2 Aug 2015 11:43:27 +0000 (UTC) X-Virus-Scanned: amavisd-new at sbone.de Received: from mail.sbone.de ([IPv6:fde9:577b:c1a9:31::2013:587]) by content-filter.sbone.de (content-filter.sbone.de [fde9:577b:c1a9:31::2013:2742]) (amavisd-new, port 10024) with ESMTP id JTys-3dlMZ3U; Sun, 2 Aug 2015 11:43:26 +0000 (UTC) Received: from [IPv6:fde9:577b:c1a9:4410:a9f2:c962:3e4a:6bcd] (unknown [IPv6:fde9:577b:c1a9:4410:a9f2:c962:3e4a:6bcd]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.sbone.de (Postfix) with ESMTPSA id 0E0D8C76FD3; Sun, 2 Aug 2015 11:43:24 +0000 (UTC) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2102\)) Subject: Re: svn commit: r286168 - head/sys/net From: "Bjoern A. Zeeb" In-Reply-To: <201508020015.t720Fr6R018929@repo.freebsd.org> Date: Sun, 2 Aug 2015 11:42:50 +0000 Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Content-Transfer-Encoding: quoted-printable Message-Id: References: <201508020015.t720Fr6R018929@repo.freebsd.org> To: John-Mark Gurney X-Mailer: Apple Mail (2.2102) X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Aug 2015 11:43:32 -0000 > On 02 Aug 2015, at 00:15 , John-Mark Gurney wrote: > -CTASSERT(sizeof(struct sadb_x_policy) =3D=3D 16); > +_Static_assert(sizeof(struct sadb_x_policy) =3D=3D 16, "struct size = mismatch"); If this fires, how does it look like? I am assuming the string at the = end is the error message? If so and if the assertion is not printed = that string should be improved rather than being the same for all = checks. /bz=