From 0f0d65df7b04beaf839de36f9d1ab2fd9fe7f478 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Fri, 27 Jul 2018 22:31:38 +0000 Subject: [PATCH] Style nits noted by rpokala --- stand/efi/loader/main.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stand/efi/loader/main.c b/stand/efi/loader/main.c index 0785dc6b6f43..d108bc01bbd6 100644 --- a/stand/efi/loader/main.c +++ b/stand/efi/loader/main.c @@ -365,7 +365,6 @@ match_boot_info(EFI_LOADED_IMAGE *img __unused, char *boot_info, size_t bisz) * path in it. Those show up as various VenHw() nodes * which are basically opaque to us. Don't count those * as something specifc. - * path in it... */ if (last_dp == first_dp) { printf("Ignoring Boot%04x: Only one DP found\n", boot_current); @@ -386,7 +385,7 @@ match_boot_info(EFI_LOADED_IMAGE *img __unused, char *boot_info, size_t bisz) return BAD_CHOICE; } set_currdev_pdinfo(pp); - if (!sanity_check_currdev()){ + if (!sanity_check_currdev()) { printf("Ignoring Boot%04x: sanity check failed\n", boot_current); return BAD_CHOICE; }