From 452dc76c606d47dc248f846f1202d708a7245f5e Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Tue, 3 Oct 2017 06:18:45 +0200 Subject: global: satisfy bitshift pedantry Suggested-by: Sultan Alsawaf Signed-off-by: Jason A. Donenfeld --- src/routingtable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/routingtable.c') diff --git a/src/routingtable.c b/src/routingtable.c index c4e343f..6fdad8a 100644 --- a/src/routingtable.c +++ b/src/routingtable.c @@ -14,7 +14,7 @@ struct routing_table_node { static inline void copy_and_assign_cidr(struct routing_table_node *node, const u8 *src, u8 cidr) { memcpy(node->bits, src, (cidr + 7) / 8); - node->bits[(cidr + 7) / 8 - 1] &= 0xff << ((8 - (cidr % 8)) % 8); + node->bits[(cidr + 7) / 8 - 1] &= 0xffU << ((8 - (cidr % 8)) % 8); node->cidr = cidr; node->bit_at_a = cidr / 8; node->bit_at_b = 7 - (cidr % 8); -- cgit v1.2.3