libefi: efipart.c cstyle fix for efipart_print_common()

The else statement should have { }
This commit is contained in:
Toomas Soome 2017-09-22 07:37:42 +00:00
parent 5af584ffc1
commit abf054b4c6

View File

@ -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)