diff options
author | Meelis Roos <mroos@linux.ee> | 2006-11-01 21:07:27 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-11-01 21:07:27 -0500 |
commit | 6f5b7ef6b5816dc497094048d7d8a270004602d6 (patch) | |
tree | 2c1b87b2680be227afaaafbe43d188afd95035c2 /net/bridge | |
parent | 5b1225454f7891970cb5ba87c8ef24edb1fa6c3a (diff) |
[NETFILTER]: silence a warning in ebtables
net/bridge/netfilter/ebtables.c: In function 'ebt_dev_check':
net/bridge/netfilter/ebtables.c:89: warning: initialization discards qualifiers from pointer target type
So make the char* a const char * and the warning is gone.
Signed-off-by: Meelis Roos <mroos@linux.ee>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge')
-rw-r--r-- | net/bridge/netfilter/ebtables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bridge/netfilter/ebtables.c b/net/bridge/netfilter/ebtables.c index 3df55b2bd91d..9f85666f29f7 100644 --- a/net/bridge/netfilter/ebtables.c +++ b/net/bridge/netfilter/ebtables.c | |||
@@ -86,7 +86,7 @@ static inline int ebt_do_match (struct ebt_entry_match *m, | |||
86 | static inline int ebt_dev_check(char *entry, const struct net_device *device) | 86 | static inline int ebt_dev_check(char *entry, const struct net_device *device) |
87 | { | 87 | { |
88 | int i = 0; | 88 | int i = 0; |
89 | char *devname = device->name; | 89 | const char *devname = device->name; |
90 | 90 | ||
91 | if (*entry == '\0') | 91 | if (*entry == '\0') |
92 | return 0; | 92 | return 0; |