Commit 7477c3ab authored by Maria Matejka's avatar Maria Matejka
Browse files

Filter refactoring: indentation fix

parent 77afdd17
Loading
Loading
Loading
Loading
+23 −22
Original line number Diff line number Diff line
@@ -652,10 +652,12 @@ interpret(struct filter_state *fs, struct f_inst *what)

#define ARG_ANY(n) INTERPRET(what->a##n.p, n)

#define ARG(n,t) ARG_ANY(n); \
#define ARG(n,t) do { \
  ARG_ANY(n); \
  if (v##n.type != t) \
    runtime("Argument %d of instruction %s must be of type %02x, got %02x", \
	  n, f_instruction_name(what->fi_code), t, v##n.type);
	    n, f_instruction_name(what->fi_code), t, v##n.type); \
} while (0)

#define INTERPRET(what_, n) do { \
  fs->stack_ptr += n; \
@@ -667,11 +669,9 @@ interpret(struct filter_state *fs, struct f_inst *what)
    return fret; \
} while (0)

#define ACCESS_RTE \
  do { if (!fs->rte) runtime("No route to access"); } while (0)
#define ACCESS_RTE do { if (!fs->rte) runtime("No route to access"); } while (0)

#define ACCESS_EATTRS \
  do { if (!fs->eattrs) f_cache_eattrs(fs); } while (0)
#define ACCESS_EATTRS do { if (!fs->eattrs) f_cache_eattrs(fs); } while (0)

#define BITFIELD_MASK(what_) (1u << EA_BIT_GET(what_->a2.i))

@@ -684,7 +684,8 @@ interpret(struct filter_state *fs, struct f_inst *what)
#undef INTERPRET
#undef ACCESS_RTE
#undef ACCESS_EATTRS
  }}
    }
  }
  return F_NOP;
}