From 60f989a939643a3fdf9553613f1b916a45a9c6ed Mon Sep 17 00:00:00 2001 From: Stephen Warren Date: Sat, 14 Nov 2015 23:53:49 -0700 Subject: Fix sandbox build on Ubuntu 10.04 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit gcc 4.4.3 (which is the default native compiler on x86-64 Ubuntu 10.04) doesn't seem to like initializers for sub-fields of anonymous unions. Solve this by replacing the initialization with an assignment. This fixes: lib/lz4_wrapper.c: In function ‘ulz4fn’: lib/lz4_wrapper.c:97: error: unknown field ‘raw’ specified in initializer Signed-off-by: Stephen Warren Reviewed-by: Tom Rini Acked-by: Simon Glass --- lib/lz4_wrapper.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib/lz4_wrapper.c') diff --git a/lib/lz4_wrapper.c b/lib/lz4_wrapper.c index 0739663fca..6dc8b764b3 100644 --- a/lib/lz4_wrapper.c +++ b/lib/lz4_wrapper.c @@ -94,7 +94,9 @@ int ulz4fn(const void *src, size_t srcn, void *dst, size_t *dstn) } while (1) { - struct lz4_block_header b = { .raw = le32_to_cpu(*(u32 *)in) }; + struct lz4_block_header b; + + b.raw = le32_to_cpu(*(u32 *)in); in += sizeof(struct lz4_block_header); if (in - src + b.size > srcn) { -- cgit v1.2.1