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>
Reviewed-on: https://review.coreboot.org/27551
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Patrick Georgi 2018-07-19 17:33:57 +02:00 committed by Patrick Georgi
parent 109faa6719
commit 71955a5b3f
1 changed files with 2 additions and 2 deletions

View File

@ -250,7 +250,7 @@ int parse_flat_binary_to_payload(const struct buffer *input,
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 @@ int parse_fv_to_payload(const struct buffer *input, struct buffer *output,
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;