Date: Sat, 24 Oct 2015 12:07:53 -0700 From: Mark Johnston <markj@freebsd.org> To: Conrad Meyer <cem@FreeBSD.org> 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> In-Reply-To: <CAG6CVpW9bRSccWVBgWELW-5FontH8rD4t_=c-sZb%2BTM%2BxiVCHg@mail.gmail.com> References: <201510240316.t9O3GeaL027021@repo.freebsd.org> <CAG6CVpW9bRSccWVBgWELW-5FontH8rD4t_=c-sZb%2BTM%2BxiVCHg@mail.gmail.com>
next in thread | previous in thread | raw e-mail | index | archive | help
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 <markj@freebsd.org> 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 } } > >
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20151024190753.GA20161>