From e7ef53a43421d5b727fbeb157403b9a33c7360f8 Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Sat, 30 Dec 2023 23:11:43 +0000 Subject: [PATCH] Fix include path in network/core/http.h --- src/network/core/http.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/network/core/http.h b/src/network/core/http.h index 0b082ab1c7..ec09195d79 100644 --- a/src/network/core/http.h +++ b/src/network/core/http.h @@ -13,7 +13,7 @@ #define NETWORK_CORE_HTTP_H #include "tcp.h" -#include "../../src/core/alloc_type.hpp" +#include "../../core/alloc_type.hpp" constexpr int HTTP_429_TOO_MANY_REQUESTS = 429;