commit | 8417f04d752e8d73035ebed08514aaf8f0c000a4 | [log] [tgz] |
---|---|---|
author | Trond Einar Snekvik <Trond.Einar.Snekvik@nordicsemi.no> | Tue Jan 04 16:20:15 2022 +0100 |
committer | Carles CufĂ <carles.cufi@nordicsemi.no> | Wed Jan 05 14:40:06 2022 +0100 |
tree | b0a60997d6f8f08d02aefa53d28e38b427a47f74 | |
parent | f08279901d3dd95242ce8cf1d20628ef3c080683 [diff] |
Bluetooth: Mesh: Fix beacon_auth header net_id size The crypto.h declaration of the bt_mesh_beacon_auth function declares the net_id parameter to be a 16 byte array, but the function definition says 8 bytes. This breaks compilation in GCC 11, which feeds an 8 byte array into this API, triggering a warning. Change the header declaration to 8 bytes, which is the right size. Signed-off-by: Trond Einar Snekvik <Trond.Einar.Snekvik@nordicsemi.no>