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

(cherry picked from commit edcdd4f644)
This commit is contained in:
Cy Schubert 2021-12-10 20:51:01 -08:00
parent d1dc555984
commit 277e5da4c5

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++;