From: Willy Tarreau Date: Sat, 8 May 2021 11:59:05 +0000 (+0200) Subject: BUILD: queue: include tools.h from queue.c X-Git-Tag: v2.4-dev19~47 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c1a689f2eb49a66fa563972fd0b94824aeed81b9;p=thirdparty%2Fhaproxy.git BUILD: queue: include tools.h from queue.c It uses memprintf() without including the file because it inherited it from other ones. --- diff --git a/src/queue.c b/src/queue.c index f79fe5487d..1fadd10081 100644 --- a/src/queue.c +++ b/src/queue.c @@ -83,6 +83,7 @@ s * queue's lock. #include #include #include +#include #define NOW_OFFSET_BOUNDARY() ((now_ms - (TIMER_LOOK_BACK >> 12)) & 0xfffff)