diff mbox series

[2/4] sap: Fix compilation with GCC 10

Message ID 20200420120705.89691-2-szymon.janc@codecoup.pl
State New
Headers show
Series None | expand

Commit Message

Szymon Janc April 20, 2020, 12:07 p.m. UTC
---
 profiles/sap/sap.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/profiles/sap/sap.h b/profiles/sap/sap.h
index 16c333a9b..6e78d6c2d 100644
--- a/profiles/sap/sap.h
+++ b/profiles/sap/sap.h
@@ -76,7 +76,7 @@  struct sap_parameter {
 	uint8_t id;
 	uint8_t reserved;
 	uint16_t len;
-	uint8_t val[0];
+	uint8_t val[];
 	/*
 	 * Padding bytes 0-3 bytes
 	 */
@@ -86,7 +86,7 @@  struct sap_message {
 	uint8_t id;
 	uint8_t nparam;
 	uint16_t reserved;
-	struct sap_parameter param[0];
+	struct sap_parameter param[];
 } __attribute__((packed));
 
 #define SAP_BUF_SIZE		512