svn commit: r200129 - head/sys/vm
Antoine Brodin
antoine at FreeBSD.org
Sat Dec 5 17:45:57 UTC 2009
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 */
More information about the svn-src-all
mailing list