Remove redundant parenthesis.

Submitted by:	pfg
MFC after:	2 weeks.
This commit is contained in:
Marcelo Araujo 2016-04-19 04:46:13 +00:00
parent cf83e90307
commit 2f21908de4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=298247

View File

@ -854,7 +854,7 @@ string(const char *str, char **ans)
static const char *
get_type(int type)
{
int numentries = (nitems(part_types));
int numentries = nitems(part_types);
int counter = 0;
struct part_type *ptr = part_types;