Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 5 Dec 2009 17:45:56 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r200129 - head/sys/vm
Message-ID:  <200912051745.nB5HjuAB094288@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: antoine
Date: Sat Dec  5 17:45:56 2009
New Revision: 200129
URL: http://svn.freebsd.org/changeset/base/200129

Log:
  Remove trailing ";" in UMA_HASH_INSERT and UMA_HASH_REMOVE macros.
  
  MFC after:	1 month

Modified:
  head/sys/vm/uma_int.h

Modified: head/sys/vm/uma_int.h
==============================================================================
--- head/sys/vm/uma_int.h	Sat Dec  5 17:08:45 2009	(r200128)
+++ head/sys/vm/uma_int.h	Sat Dec  5 17:45:56 2009	(r200129)
@@ -144,10 +144,10 @@
 
 #define UMA_HASH_INSERT(h, s, mem)					\
 		SLIST_INSERT_HEAD(&(h)->uh_slab_hash[UMA_HASH((h),	\
-		    (mem))], (s), us_hlink);
+		    (mem))], (s), us_hlink)
 #define UMA_HASH_REMOVE(h, s, mem)					\
 		SLIST_REMOVE(&(h)->uh_slab_hash[UMA_HASH((h),		\
-		    (mem))], (s), uma_slab, us_hlink);
+		    (mem))], (s), uma_slab, us_hlink)
 
 /* Hash table for freed address -> slab translation */
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200912051745.nB5HjuAB094288>