summaryrefslogtreecommitdiffstats
path: root/src/lib/jpeg.c
diff options
context:
space:
mode:
authorYouness Alaoui <kakaroto@kakaroto.homelinux.net>2017-03-28 16:12:25 -0400
committerNico Huber <nico.h@gmx.de>2017-03-29 13:05:18 +0200
commitd24dbf99029e6c256791e9d5254ac92848c68fa5 (patch)
tree7aa9484988d14e1878f56547caaadc403d2b0ea1 /src/lib/jpeg.c
parente912d933df929b591d158b8950a00f194b602883 (diff)
downloadcoreboot-d24dbf99029e6c256791e9d5254ac92848c68fa5.tar.gz
coreboot-d24dbf99029e6c256791e9d5254ac92848c68fa5.tar.bz2
coreboot-d24dbf99029e6c256791e9d5254ac92848c68fa5.zip
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 <youness.alaoui@puri.sm> Reviewed-on: https://review.coreboot.org/19032 Reviewed-by: Nico Huber <nico.h@gmx.de> Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/lib/jpeg.c')
-rw-r--r--src/lib/jpeg.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/jpeg.c b/src/lib/jpeg.c
index 06827ea4139c..71253967c173 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)