Fix a missing blank space.

This commit is contained in:
Marcelo Araujo 2016-04-21 06:14:30 +00:00
parent 2d123458af
commit 6a25181bba
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=298391

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