From abf054b4c65989f3a556d1fb84d5a05227a19253 Mon Sep 17 00:00:00 2001 From: Toomas Soome Date: Fri, 22 Sep 2017 07:37:42 +0000 Subject: [PATCH] libefi: efipart.c cstyle fix for efipart_print_common() The else statement should have { } --- sys/boot/efi/libefi/efipart.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/boot/efi/libefi/efipart.c b/sys/boot/efi/libefi/efipart.c index 644c3841f5a2..230ce9997ec9 100644 --- a/sys/boot/efi/libefi/efipart.c +++ b/sys/boot/efi/libefi/efipart.c @@ -632,8 +632,9 @@ efipart_print_common(struct devsw *dev, pdinfo_list_t *pdlist, int verbose) if (blkio->Media->MediaPresent) { if (blkio->Media->RemovableMedia) printf(" (removable)"); - } else + } else { printf(" (no media)"); + } if ((ret = pager_output("\n")) != 0) break; if (!blkio->Media->MediaPresent)