mirror of
https://github.com/opnsense/src.git
synced 2026-03-26 12:43:12 -04:00
MFC r200129 to stable/8:
Remove trailing ";" in UMA_HASH_INSERT and UMA_HASH_REMOVE macros.
This commit is contained in:
parent
aecc4e1724
commit
f12d6d2a3f
1 changed files with 2 additions and 2 deletions
|
|
@ -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 a new issue