libpayload: Remove unnecessary brackets
This fixes compilation with clang. Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Change-Id: I675056c8a15fe446bba81a144bfea64d106df293 Reviewed-on: https://review.coreboot.org/c/coreboot/+/77435 Reviewed-by: Elyes Haouas <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
ae57f1d2dc
commit
536ea50c53
|
@ -1326,7 +1326,7 @@ _nc_Synchronize_Options(FIELD *field, Field_Options newopts)
|
||||||
field->opts = oldopts;
|
field->opts = oldopts;
|
||||||
returnCode(E_CURRENT);
|
returnCode(E_CURRENT);
|
||||||
}
|
}
|
||||||
if ((form->curpage == field->page))
|
if (form->curpage == field->page)
|
||||||
{
|
{
|
||||||
if (changed_opts & O_VISIBLE)
|
if (changed_opts & O_VISIBLE)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue