ipfilter printfieldhdr: remove set-but-not-unused vars

MFC after:	3 days
This commit is contained in:
Cy Schubert 2021-12-10 20:51:01 -08:00
parent 9018f7fa45
commit edcdd4f644

View file

@ -16,10 +16,9 @@ printfieldhdr(words, field)
{
wordtab_t *w;
char *s, *t;
int i;
if (field->w_value == -2) {
for (i = 0, w = words; w->w_word != NULL; ) {
for (w = words; w->w_word != NULL; ) {
if (w->w_value > 0) {
printfieldhdr(words, w);
w++;