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

Commit 5df15196 authored by Jan Engelhardt's avatar Jan Engelhardt Committed by Pablo Neira Ayuso
Browse files

netfilter: xt_comment: drop unneeded unsigned qualifier



Since a string is stored, and not something like a MAC address that
would rely on (un)signedness, drop the qualifier.

Signed-off-by: default avatarJan Engelhardt <jengelh@medozas.de>
Signed-off-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
parent c6d2d445
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 */