From owner-svn-src-all@freebsd.org Sat Oct 24 19:08:02 2015 Return-Path: Delivered-To: svn-src-all@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 E10ADA1D64A; Sat, 24 Oct 2015 19:08:02 +0000 (UTC) (envelope-from markjdb@gmail.com) Received: from mail-pa0-x234.google.com (mail-pa0-x234.google.com [IPv6:2607:f8b0:400e:c03::234]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B54811D88; Sat, 24 Oct 2015 19:08:02 +0000 (UTC) (envelope-from markjdb@gmail.com) Received: by pasz6 with SMTP id z6so147193085pas.2; Sat, 24 Oct 2015 12:08:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=uGMXxnXAURvuC5UV3rTeCVdnbg5wKc0Cz10jz4LPkos=; b=KeL1RXLQDW21jk767x2vgdZc38Yqf5VhrjO1YF/yjh38RbAPxB3HZCZ5yH4S8ghoeZ MtR1pqHlIe4buiPV/WaD7+/q4M8DGATcaHN78vFUfLyPA13mjkOn74uCbaYx09j3io9J sX2lOiiiDmlMKi/Gr/fOg2w5TiPdx7zpHOAt8AWDG/l0cDxDmJTfUx7W6tmY5j4YDvnw Nrvs4Oe92FOD6yunagrgKXj0Kdzdx0MgGj+3SBEcW34iIiViycb6B8wx7+JumELXm6pP 6NNlNAu2OxiwOKaBgYK+eYuRgnqFvgfDceRYPlnw7bZTXncEiNrq/2GpcutI9W7JOp87 J3ug== X-Received: by 10.66.90.198 with SMTP id by6mr12428726pab.78.1445713682369; Sat, 24 Oct 2015 12:08:02 -0700 (PDT) Received: from raichu ([104.232.114.184]) by smtp.gmail.com with ESMTPSA id z12sm25431863pbt.30.2015.10.24.12.08.01 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 24 Oct 2015 12:08:01 -0700 (PDT) Sender: Mark Johnston Date: Sat, 24 Oct 2015 12:07:53 -0700 From: Mark Johnston To: Conrad Meyer Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r289867 - head/sys/sys Message-ID: <20151024190753.GA20161@raichu> References: <201510240316.t9O3GeaL027021@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 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: Sat, 24 Oct 2015 19:08:03 -0000 On Sat, Oct 24, 2015 at 12:05:49PM -0700, Conrad Meyer wrote: > This broke the build (xen_intr.c used BITSET_DEFINE() without a semi-colon). > > Fixed in and X-MFC-With: r289884. Thanks, and sorry for the breakage. > > Best, > Conrad > > On Fri, Oct 23, 2015 at 8:16 PM, Mark Johnston wrote: > > Author: markj > > Date: Sat Oct 24 03:16:40 2015 > > New Revision: 289867 > > URL: https://svnweb.freebsd.org/changeset/base/289867 > > > > Log: > > Remove an erroneous semicolon. > > > > MFC after: 3 days > > > > Modified: > > head/sys/sys/_bitset.h > > > > Modified: head/sys/sys/_bitset.h > > ============================================================================== > > --- head/sys/sys/_bitset.h Sat Oct 24 03:14:36 2015 (r289866) > > +++ head/sys/sys/_bitset.h Sat Oct 24 03:16:40 2015 (r289867) > > @@ -50,7 +50,7 @@ > > #define BITSET_DEFINE(t, _s) \ > > struct t { \ > > long __bits[__bitset_words((_s))]; \ > > -}; > > +} > > > > #define BITSET_T_INITIALIZER(x) \ > > { .__bits = { x } } > >