Patrick Georgi has uploaded this change for review. ( https://review.coreboot.org/27551
Change subject: util/cbfstool: fix build with clang ......................................................................
util/cbfstool: fix build with clang
Without the second set of braces it fails (due to -Werror) with "suggest braces around initialization of subobject"
Change-Id: I63cb01dd26412599551ee921c3215a4aa69f4e17 Signed-off-by: Patrick Georgi pgeorgi@chromium.org --- M util/cbfstool/cbfs-mkpayload.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/51/27551/1
diff --git a/util/cbfstool/cbfs-mkpayload.c b/util/cbfstool/cbfs-mkpayload.c index 8464a2b..d6c10ad 100644 --- a/util/cbfstool/cbfs-mkpayload.c +++ b/util/cbfstool/cbfs-mkpayload.c @@ -250,7 +250,7 @@ enum comp_algo algo) { comp_func_ptr compress; - struct cbfs_payload_segment segs[2] = {0}; + struct cbfs_payload_segment segs[2] = { {0} }; int doffset, len = 0;
compress = compression_function(algo); @@ -295,7 +295,7 @@ enum comp_algo algo) { comp_func_ptr compress; - struct cbfs_payload_segment segs[2] = {0}; + struct cbfs_payload_segment segs[2] = { {0} }; int doffset, len = 0; firmware_volume_header_t *fv; ffs_file_header_t *fh;