Skip to content

Commit c8742a3

Browse files
Thalleykartben
authored andcommitted
Bluetooth: Mesh: Add missing includes to va.h
The va.h file used both uintX and bool without including the appropriate header files, which can cause a compile issue if the file is included in the wrong order. Signed-off-by: Emil Gydesen <[email protected]>
1 parent 72d9a37 commit c8742a3

File tree

1 file changed

+3
-0
lines changed
  • subsys/bluetooth/mesh

1 file changed

+3
-0
lines changed

subsys/bluetooth/mesh/va.h

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7+
#include <stdint.h>
8+
#include <stdbool.h>
9+
710
/** Virtual address entry. */
811
struct bt_mesh_va {
912
uint16_t ref:15,

0 commit comments

Comments
 (0)