Skip to content

Commit

Permalink
netfilter: xt_comment: drop unneeded unsigned qualifier
Browse files Browse the repository at this point in the history
Since a string is stored, and not something like a MAC address that
would rely on (un)signedness, drop the qualifier.

Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
  • Loading branch information
Jan Engelhardt authored and Pablo Neira Ayuso committed Jan 13, 2011
1 parent c6d2d44 commit 5df1519
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/linux/netfilter/xt_comment.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#define XT_MAX_COMMENT_LEN 256

struct xt_comment_info {
unsigned char comment[XT_MAX_COMMENT_LEN];
char comment[XT_MAX_COMMENT_LEN];
};

#endif /* XT_COMMENT_H */

0 comments on commit 5df1519

Please sign in to comment.