diff options
author | David Lamparter <equinox@diac24.net> | 2019-06-21 08:25:42 +0200 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2019-06-21 08:54:25 +0200 |
commit | eaf58ba906129ecaf61ff21ad9263e12bd8931cb (patch) | |
tree | 2620916ebc31d208f3a3cd07650d5f421e4d223b /lib/table.c | |
parent | babeld: use MTYPE_STATIC (diff) | |
download | frr-eaf58ba906129ecaf61ff21ad9263e12bd8931cb.tar.xz frr-eaf58ba906129ecaf61ff21ad9263e12bd8931cb.zip |
lib: use MTYPE_STATIC
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/table.c')
-rw-r--r-- | lib/table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/table.c b/lib/table.c index 728615c77..1a89a95f4 100644 --- a/lib/table.c +++ b/lib/table.c @@ -28,7 +28,7 @@ #include "memory.h" #include "sockunion.h" -DEFINE_MTYPE(LIB, ROUTE_TABLE, "Route table") +DEFINE_MTYPE_STATIC(LIB, ROUTE_TABLE, "Route table") DEFINE_MTYPE(LIB, ROUTE_NODE, "Route node") static void route_table_free(struct route_table *); |