From dcdcc0e44f219fe06c9f403199a6044cea2192fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Tue, 28 May 2019 15:18:34 +0300 Subject: [PATCH] Fix avrorouter build failure Signed to unsigned comparison. --- server/modules/routing/avrorouter/rpl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/modules/routing/avrorouter/rpl.cc b/server/modules/routing/avrorouter/rpl.cc index b73922919..e3754a432 100644 --- a/server/modules/routing/avrorouter/rpl.cc +++ b/server/modules/routing/avrorouter/rpl.cc @@ -1116,7 +1116,7 @@ const char* keywords[] = NULL }; -static bool token_is_keyword(const char* tok, int len) +static bool token_is_keyword(const char* tok, size_t len) { for (int i = 0; keywords[i]; i++) {