From c7445d9736947163f0028bae0fd1ae2133bbbdbe Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Mon, 13 May 2024 16:34:41 -0400 Subject: [PATCH] mesh: Fix not setting rpl_dir as static rpl_dir shall be made static to be properly scoped. --- mesh/rpl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesh/rpl.c b/mesh/rpl.c index 1213ee66e..fb225dddd 100644 --- a/mesh/rpl.c +++ b/mesh/rpl.c @@ -31,7 +31,7 @@ #include "mesh/util.h" #include "mesh/rpl.h" -const char *rpl_dir = "/rpl"; +static const char *rpl_dir = "/rpl"; bool rpl_put_entry(struct mesh_node *node, uint16_t src, uint32_t iv_index, uint32_t seq) -- 2.47.3