Bring back the cast removed in my previous commit to allow us build vmstat

with WARNS 2. This cast was first introduced at r87690.

Reported by:	bde, pfg and ngie
MFC after:	3 weeks.
This commit is contained in:
Marcelo Araujo 2017-03-11 04:36:15 +00:00
parent 56eeadd845
commit ee1acd865e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=315049

View File

@ -288,13 +288,13 @@ main(int argc, char *argv[])
namelist[X_SUM].n_name = "_cnt";
goto retry_nlist;
}
for (c = 0; c < nitems(namelist); c++)
for (c = 0; c < (int)(nitems(namelist)); c++)
if (namelist[c].n_type == 0)
bufsize += strlen(namelist[c].n_name) + 1;
bufsize += len + 1;
buf = bp = alloca(bufsize);
for (c = 0; c < nitems(namelist); c++)
for (c = 0; c < (int)(nitems(namelist)); c++)
if (namelist[c].n_type == 0) {
xo_error(" %s",
namelist[c].n_name);