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); }