summaryrefslogtreecommitdiff
path: root/mesh
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2021-04-27 19:12:37 +0200
committerMarcel Holtmann <marcel@holtmann.org>2021-04-27 19:12:37 +0200
commit4cd4880fc95a719cdfb05b72e14fa6695be1d245 (patch)
treec8922ee4f051737ce325dd92531ca3c5f3921972 /mesh
parent4d9150b28b7eeb0aa96dd44ab10a0e4afc99eb96 (diff)
downloadbluez-4cd4880fc95a719cdfb05b72e14fa6695be1d245.tar.gz
mesh: Fix net_key_confirm parameter declaration
Diffstat (limited to 'mesh')
-rw-r--r--mesh/net-keys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesh/net-keys.c b/mesh/net-keys.c
index e42cac70c..e0060df74 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));