From 6e176251534397403b879119a9ce0fd267bf66ef Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Tue, 27 Apr 2021 19:12:37 +0200 Subject: [PATCH] mesh: Fix net_key_confirm parameter declaration Signed-off-by: Anuj Jain Signed-off-by: Ayush Garg --- mesh/net-keys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesh/net-keys.c b/mesh/net-keys.c index e42cac7..e0060df 100644 --- a/mesh/net-keys.c +++ b/mesh/net-keys.c @@ -174,7 +174,7 @@ void net_key_unref(uint32_t id) } } -bool net_key_confirm(uint32_t id, const uint8_t *master) +bool net_key_confirm(uint32_t id, const uint8_t master[16]) { struct net_key *key = l_queue_find(keys, match_id, L_UINT_TO_PTR(id)); -- 2.7.4