UPSTREAM: 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.

BUG=none
BRANCH=none
TEST=none

Change-Id: I60eb0319dd3ae170694ba8e0b570876f646d917c
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: d24dbf9902
Original-Change-Id: Ie10b774875fc25ce2ff613c542c15870e780a761
Original-Signed-off-by: Youness Alaoui <youness.alaoui@puri.sm>
Original-Reviewed-on: https://review.coreboot.org/19032
Original-Reviewed-by: Nico Huber <nico.h@gmx.de>
Original-Tested-by: build bot (Jenkins)
Original-Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-on: https://chromium-review.googlesource.com/462963
This commit is contained in:
Youness Alaoui 2017-03-28 16:12:25 -04:00 committed by chrome-bot
parent c9966add34
commit e4c80b26f0

View file

@ -464,6 +464,7 @@ static int fillbits(struct in *in, int le, unsigned int bi)
m = in->func(in->data); m = in->func(in->data);
if (m == 0) if (m == 0)
continue; continue;
}
} }
in->marker = m; in->marker = m;
if (le <= 16) if (le <= 16)