On Mon, 27 Jun 2016 11:34:25 -0700 David Ahern <[email protected]> wrote:
> + case SSF_DEVCOND:
> + {
> + struct aafilter *a = (void *)f->pred;
I don't like the wandering bracket left, but all the code has that.
After this will change it to:
case SSF_DEVCOND: {
struct aafilter *a = f->pred;
...
