From 323061173b5c133390f418dc4ab9b709273474c8 Mon Sep 17 00:00:00 2001 From: araujo Date: Thu, 21 Apr 2016 06:11:24 +0000 Subject: Simplify the get_type() function. Submitted by: bde Discussed with: bde, jhb and pfg MFC after: 2 weeks. --- sbin/fdisk_pc98/fdisk.c | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) (limited to 'sbin') diff --git a/sbin/fdisk_pc98/fdisk.c b/sbin/fdisk_pc98/fdisk.c index 7c1a64b..e8d54d5 100644 --- a/sbin/fdisk_pc98/fdisk.c +++ b/sbin/fdisk_pc98/fdisk.c @@ -854,17 +854,11 @@ string(const char *str, char **ans) static const char * get_type(int type) { - int numentries = nitems(part_types); - int counter = 0; - struct part_type *ptr = part_types; + size_t i; - - while(counter < numentries) { - if(ptr->type == (type & 0x7f)) - return(ptr->name); - ptr++; - counter++; - } + for (i = 0; i < nitems(part_types); i++) + if(part_types[i].type == (type & 0x7f)) + return(part_types[i].name); return("unknown"); } -- cgit v1.1