diff mbox series

[BlueZ] mesh: Fix GCC 10.0 warnings

Message ID 20200417185721.18312-1-brian.gix@intel.com (mailing list archive)
State Accepted
Headers show
Series [BlueZ] mesh: Fix GCC 10.0 warnings | expand

Commit Message

Brian Gix April 17, 2020, 6:57 p.m. UTC
---
 mesh/crypto.c           | 2 +-
 mesh/mesh-config-json.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/mesh/crypto.c b/mesh/crypto.c
index df597bb3f..99536594b 100644
--- a/mesh/crypto.c
+++ b/mesh/crypto.c
@@ -1038,7 +1038,7 @@  bool mesh_crypto_check_avail()
 			uint8_t data[20];
 			uint8_t mic[8];
 		} crypto;
-		uint8_t bytes[0];
+		uint8_t bytes[73];
 	} u;
 	uint8_t out_msg[sizeof(u.crypto.data) + sizeof(u.crypto.mic)];
 
diff --git a/mesh/mesh-config-json.c b/mesh/mesh-config-json.c
index 97267b6c3..7362112f2 100644
--- a/mesh/mesh-config-json.c
+++ b/mesh/mesh-config-json.c
@@ -1980,7 +1980,7 @@  bool mesh_config_model_sub_del_all(struct mesh_config *cfg, uint16_t addr,
 bool mesh_config_write_seq_number(struct mesh_config *cfg, uint32_t seq,
 								bool cache)
 {
-	int value;
+	int value = 0;
 	uint32_t cached = 0;
 
 	if (!cfg)