From d24dbf99029e6c256791e9d5254ac92848c68fa5 Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Tue, 28 Mar 2017 16:12:25 -0400 Subject: src/lib/jpeg: Fix missing closing brace There's a missing closing brace in fillbits function of jpeg.c which caused an avalanche of compilation errors. This was introduced in commit 491c5b60 (src/lib: Move assignment out of if condition) which was reviewed in gerrit at https://review.coreboot.org/18761 and it prevents coreboot from building when CONFIG_BOOTSPLASH is set. Change-Id: Ie10b774875fc25ce2ff613c542c15870e780a761 Signed-off-by: Youness Alaoui Reviewed-on: https://review.coreboot.org/19032 Reviewed-by: Nico Huber Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel --- src/lib/jpeg.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/lib/jpeg.c') diff --git a/src/lib/jpeg.c b/src/lib/jpeg.c index 06827ea413..71253967c1 100644 --- a/src/lib/jpeg.c +++ b/src/lib/jpeg.c @@ -464,6 +464,7 @@ static int fillbits(struct in *in, int le, unsigned int bi) m = in->func(in->data); if (m == 0) continue; + } } in->marker = m; if (le <= 16) -- cgit v1.2.3