Fix a missing blank space.

This commit is contained in:
Marcelo Araujo 2016-04-21 06:14:30 +00:00
parent 2d123458af
commit 6a25181bba

View File

@ -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");
}