summaryrefslogtreecommitdiffstats
path: root/sys/vm
diff options
context:
space:
mode:
authorantoine <antoine@FreeBSD.org>2009-12-05 17:45:56 +0000
committerantoine <antoine@FreeBSD.org>2009-12-05 17:45:56 +0000
commit646097b80a2f3afd623c7ec9bfd6a13a4d0a756a (patch)
treeedcdb2922cf1f199ff770f39782499a642fb9b1d /sys/vm
parent701c04d679b8eed0b7ed8984a58734d652752577 (diff)
downloadFreeBSD-src-646097b80a2f3afd623c7ec9bfd6a13a4d0a756a.zip
FreeBSD-src-646097b80a2f3afd623c7ec9bfd6a13a4d0a756a.tar.gz
Remove trailing ";" in UMA_HASH_INSERT and UMA_HASH_REMOVE macros.
MFC after: 1 month
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 c2ed06d..1aaf84f 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 */
OpenPOWER on IntegriCloud