From 646097b80a2f3afd623c7ec9bfd6a13a4d0a756a Mon Sep 17 00:00:00 2001 From: antoine Date: Sat, 5 Dec 2009 17:45:56 +0000 Subject: Remove trailing ";" in UMA_HASH_INSERT and UMA_HASH_REMOVE macros. MFC after: 1 month --- sys/vm/uma_int.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/vm') 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 */ -- cgit v1.1