Date: Fri, 13 Nov 2015 01:37:08 +0000 (UTC) From: Mark Johnston <markj@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r290739 - stable/10/sys/sys Message-ID: <201511130137.tAD1b8DW073024@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: markj Date: Fri Nov 13 01:37:08 2015 New Revision: 290739 URL: https://svnweb.freebsd.org/changeset/base/290739 Log: MFC r289867: Remove an erroneous semicolon. Modified: stable/10/sys/sys/_bitset.h Directory Properties: stable/10/ (props changed) Modified: stable/10/sys/sys/_bitset.h ============================================================================== --- stable/10/sys/sys/_bitset.h Fri Nov 13 01:27:20 2015 (r290738) +++ stable/10/sys/sys/_bitset.h Fri Nov 13 01:37:08 2015 (r290739) @@ -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?201511130137.tAD1b8DW073024>