stand/efi: Remove redundant parenthesis

Style: Remove redundant parens.

Sponsored by:		Netflix
This commit is contained in:
Warner Losh 2022-12-03 17:23:20 -07:00
parent 67e39a0d1b
commit 3df86732af

View file

@ -355,7 +355,7 @@ bi_load(char *args, vm_offset_t *modulep, vm_offset_t *kernendp, bool exit_bs)
addr = 0;
for (xp = file_findfile(NULL, NULL); xp != NULL; xp = xp->f_next) {
if (addr < (xp->f_addr + xp->f_size))
if (addr < xp->f_addr + xp->f_size)
addr = xp->f_addr + xp->f_size;
}