svn commit: r289867 - head/sys/sys

Mark Johnston markj at FreeBSD.org
Sat Oct 24 03:16:41 UTC 2015


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 } }


More information about the svn-src-all mailing list