aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/routingtable.c
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2017-10-03 06:18:45 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2017-10-03 06:20:48 +0200
commit9eaec6d8f5cba1a95c7072c95d0a13726352aaea (patch)
tree12d7f4829c92bd535543698308466285b4bd8942 /src/routingtable.c
parentreceive: simplify message type validation (diff)
downloadwireguard-monolithic-historical-9eaec6d8f5cba1a95c7072c95d0a13726352aaea.tar.xz
wireguard-monolithic-historical-9eaec6d8f5cba1a95c7072c95d0a13726352aaea.zip
global: satisfy bitshift pedantry
Suggested-by: Sultan Alsawaf <sultanxda@gmail.com>
Diffstat (limited to '')
-rw-r--r--src/routingtable.c2
1 files changed, 1 insertions, 1 deletions
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);