Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/84172?usp=email )
Change subject: cpu/intel/smm_reloc.h: Fix Wunterminated-string-initialization error ......................................................................
cpu/intel/smm_reloc.h: Fix Wunterminated-string-initialization error
Change-Id: I7aa05014d68106ea4e00e6f355f054016d140046 Signed-off-by: Elyes Haouas ehaouas@noos.fr --- M src/include/cpu/intel/smm_reloc.h 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/72/84172/1
diff --git a/src/include/cpu/intel/smm_reloc.h b/src/include/cpu/intel/smm_reloc.h index 6b1a525..7006fd0 100644 --- a/src/include/cpu/intel/smm_reloc.h +++ b/src/include/cpu/intel/smm_reloc.h @@ -28,7 +28,7 @@ extern struct smm_relocation_params smm_reloc_params;
struct ied_header { - char signature[10]; + char signature[11]; u32 size; u8 reserved[34]; } __packed;