From d0c72c06eac228901a361ec7e80e38ee7ae26fa8 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Sun, 30 Oct 2016 16:52:11 -0400 Subject: [PATCH] added missing include for LOG2_CEIL() --- lib/queue.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/queue.c b/lib/queue.c index f3207b3a0..15d3b8996 100644 --- a/lib/queue.c +++ b/lib/queue.c @@ -32,6 +32,7 @@ */ #include "queue.h" +#include "utils.h" /** Initialize MPMC queue */ int queue_init(struct queue *q, size_t size, const struct memtype *mem)