From 8cb349ce431a069088a3350032c3cb6311267b32 Mon Sep 17 00:00:00 2001 From: Ano-sys Date: Sun, 12 Jan 2025 00:47:37 +0100 Subject: [PATCH] Removed redundant inline --- webserver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webserver.c b/webserver.c index bb2f74a..15f214f 100644 --- a/webserver.c +++ b/webserver.c @@ -81,7 +81,7 @@ uint16_t hash_uri(const char *uri){ #include #include -static inline bool in_range(uint16_t me, uint16_t suc, uint16_t hash) { +static bool in_range(uint16_t me, uint16_t suc, uint16_t hash) { if (me < suc) { return (hash > me && hash <= suc); }