]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
netfilter: xt_comment: drop unneeded unsigned qualifier
authorJan Engelhardt <jengelh@medozas.de>
Sun, 26 Dec 2010 09:22:22 +0000 (10:22 +0100)
committerPablo Neira Ayuso <pablo@netfilter.org>
Thu, 13 Jan 2011 11:05:11 +0000 (12:05 +0100)
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>
include/linux/netfilter/xt_comment.h

index eacfedc6b5d07e3899ca8ad88f66ccc0f817cff3..0ea5e79f5bd73fade99d020a96b68c55a8c32224 100644 (file)
@@ -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 */