Преглед изворни кода

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: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Bhumika Goyal пре 8 година
родитељ
комит
eb73ddebe9
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      net/bridge/netfilter/ebtable_nat.c

+ 1 - 1
net/bridge/netfilter/ebtable_nat.c

@@ -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,