aboutsummaryrefslogtreecommitdiffstats
path: root/tests/msgfile
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@inai.de>2014-10-04 11:06:13 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-10-04 11:49:23 +0200
commit1a632552e0f9297b8f2ec8e08b659c1e25394747 (patch)
treeb4c750e9380acefae31cd2b796ad999422371038 /tests/msgfile
parentc60de4f35f3f73f3d79b4ff61d0a20b92f818702 (diff)
build: resolve compiler warning about implicit delcaration
CC msgfile_test.o msgfile/msgfile_test.c: In function "main": msgfile/msgfile_test.c:48:2: warning: implicit declaration of function "talloc_free" [-Wimplicit-function-declaration] talloc_free(entries); ^
Diffstat (limited to 'tests/msgfile')
-rw-r--r--tests/msgfile/msgfile_test.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/msgfile/msgfile_test.c b/tests/msgfile/msgfile_test.c
index a9196947..2684b6a4 100644
--- a/tests/msgfile/msgfile_test.c
+++ b/tests/msgfile/msgfile_test.c
@@ -20,6 +20,7 @@
*/
#include <osmocom/core/msgfile.h>
+#include <osmocom/core/talloc.h>
#include <stdio.h>