mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-01 04:12:51 +00:00
Remove trailing ";" in UMA_HASH_INSERT and UMA_HASH_REMOVE macros.
MFC after: 1 month
This commit is contained in:
parent
6468cb2ce0
commit
4e2d83fc4a
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=200129
@ -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 */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user