From a5bb2b9586aee6114614eed7d9b642dc03ad39fd Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Mon, 15 May 2017 12:50:58 +0200 Subject: [PATCH] strrb: Add missing #include to talloc.h The strrb.c code uses talloc API without using the proper #include. Change-Id: I4ac485324f40545339d8df6884f1dea319a23648 --- src/strrb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/strrb.c b/src/strrb.c index 8f925bd3b..069a69937 100644 --- a/src/strrb.c +++ b/src/strrb.c @@ -30,6 +30,7 @@ #include #include +#include /* Ringbuffer assumptions, invarients, and notes: * - start is the index of the first used index slot in the ring buffer.