aboutsummaryrefslogtreecommitdiff
path: root/sys/vm
diff options
context:
space:
mode:
authorAntoine Brodin <antoine@FreeBSD.org>2009-12-05 17:45:56 +0000
committerAntoine Brodin <antoine@FreeBSD.org>2009-12-05 17:45:56 +0000
commit4e2d83fc4ac097d3849a44397a411de5ee608310 (patch)
treeedcdb2922cf1f199ff770f39782499a642fb9b1d /sys/vm
parent6468cb2ce0b62aaa418910f11909e0d739f50e7d (diff)
downloadsrc-4e2d83fc4ac097d3849a44397a411de5ee608310.tar.gz
src-4e2d83fc4ac097d3849a44397a411de5ee608310.zip
Remove trailing ";" in UMA_HASH_INSERT and UMA_HASH_REMOVE macros.
MFC after: 1 month
Notes
Notes: svn path=/head/; revision=200129
Diffstat (limited to 'sys/vm')
-rw-r--r--sys/vm/uma_int.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/uma_int.h b/sys/vm/uma_int.h
index c2ed06dc7db4..1aaf84f819d2 100644
--- a/sys/vm/uma_int.h
+++ b/sys/vm/uma_int.h
@@ -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 */