diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-06-21 07:40:27 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-21 07:40:27 -0400 |
| commit | 2bc398c3c4af0e3e7c821b81ba97d287246ed2ef (patch) | |
| tree | 1bb05678fe57348b51e9ccc7cd5838bfaceef388 /lib/hash.c | |
| parent | 9578e35d340dd4160727fdccaa0a249102f330e7 (diff) | |
| parent | b3a7e30d1f563ae25381907db519db477d9d7ee7 (diff) | |
Merge pull request #4573 from opensourcerouting/mtype_cleanup
MTYPE cleanup pass
Diffstat (limited to 'lib/hash.c')
| -rw-r--r-- | lib/hash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/hash.c b/lib/hash.c index fad7de5138..9d9d39702e 100644 --- a/lib/hash.c +++ b/lib/hash.c @@ -29,8 +29,8 @@ #include "command.h" #include "libfrr.h" -DEFINE_MTYPE(LIB, HASH, "Hash") -DEFINE_MTYPE(LIB, HASH_BACKET, "Hash Bucket") +DEFINE_MTYPE_STATIC(LIB, HASH, "Hash") +DEFINE_MTYPE_STATIC(LIB, HASH_BACKET, "Hash Bucket") DEFINE_MTYPE_STATIC(LIB, HASH_INDEX, "Hash Index") static pthread_mutex_t _hashes_mtx = PTHREAD_MUTEX_INITIALIZER; |
