Elyes Haouas has uploaded this change for review.

View Change

soc/qclib_common.h: Fix Wunterminated-string-initialization error on qclib_cb_if_table

Change-Id: I50a70f1161ea5f9926dcce51be1156ec86b4b709
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
---
M src/soc/qualcomm/common/include/soc/qclib_common.h
1 file changed, 1 insertion(+), 1 deletion(-)

git pull ssh://review.coreboot.org:29418/coreboot refs/changes/69/84169/1
diff --git a/src/soc/qualcomm/common/include/soc/qclib_common.h b/src/soc/qualcomm/common/include/soc/qclib_common.h
index 792b743..00e9f77 100644
--- a/src/soc/qualcomm/common/include/soc/qclib_common.h
+++ b/src/soc/qualcomm/common/include/soc/qclib_common.h
@@ -53,7 +53,7 @@
#define QCLIB_MAGIC_NUMBER "QCLIB_CB"

struct qclib_cb_if_table {
- char magic[8]; /* 0x00 */
+ char magic[9]; /* 0x00 */
uint32_t version; /* 0x08 */
uint32_t num_entries; /* 0x0C */
uint32_t max_entries; /* 0x10 */

To view, visit change 84169. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: newchange
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: I50a70f1161ea5f9926dcce51be1156ec86b4b709
Gerrit-Change-Number: 84169
Gerrit-PatchSet: 1
Gerrit-Owner: Elyes Haouas <ehaouas@noos.fr>