diff --git a/sbin/fdisk_pc98/fdisk.c b/sbin/fdisk_pc98/fdisk.c index e8d54d50912c..8196d8588319 100644 --- a/sbin/fdisk_pc98/fdisk.c +++ b/sbin/fdisk_pc98/fdisk.c @@ -857,7 +857,7 @@ get_type(int type) size_t i; for (i = 0; i < nitems(part_types); i++) - if(part_types[i].type == (type & 0x7f)) + if (part_types[i].type == (type & 0x7f)) return(part_types[i].name); return("unknown"); }