Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eb73ddeb authored by Bhumika Goyal's avatar Bhumika Goyal Committed by David S. Miller
Browse files

bridge: make ebt_table const



Make this const as it is only passed to a const argument of the function
ebt_register_table.

Signed-off-by: default avatarBhumika Goyal <bhumirks@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7a483899
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ static int check(const struct ebt_table_info *info, unsigned int valid_hooks)
	return 0;
}

static struct ebt_table frame_nat = {
static const struct ebt_table frame_nat = {
	.name		= "nat",
	.table		= &initial_table,
	.valid_hooks	= NAT_VALID_HOOKS,