From 931a912b433e00004ddbe201e3678cb91c11b332 Mon Sep 17 00:00:00 2001 From: Glenn Washburn Date: Wed, 28 Jun 2023 01:22:40 -0500 Subject: [PATCH] loader/efi/linux: Fix formatting and remove unneeded parenthesis Signed-off-by: Glenn Washburn Reviewed-by: Daniel Kiper --- grub-core/loader/efi/linux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/grub-core/loader/efi/linux.c b/grub-core/loader/efi/linux.c index 3a910b565..43c4e2d3d 100644 --- a/grub-core/loader/efi/linux.c +++ b/grub-core/loader/efi/linux.c @@ -251,8 +251,8 @@ grub_linux_boot (void) return grub_errno; #endif - return (grub_arch_efi_linux_boot_image((grub_addr_t)kernel_addr, - kernel_size, linux_args)); + return grub_arch_efi_linux_boot_image ((grub_addr_t) kernel_addr, + kernel_size, linux_args); } static grub_err_t -- 2.47.2