mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
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>
This commit is contained in:
parent
e912d933df
commit
d24dbf9902
1 changed files with 1 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue