From a9ff994461c16513fe390c4f23f59746ca036fb8 Mon Sep 17 00:00:00 2001 From: Thierry FOURNIER Date: Tue, 9 Jun 2015 15:49:44 +0200 Subject: [PATCH] MINOR: build: fix build dependency fix include dependency. The header file sample.h don't need to known the content of the struct arg, so I remove the include, and replace it by a simple pointer declaration. This prevent an include dependecy issue with the next patch. --- include/types/sample.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/types/sample.h b/include/types/sample.h index 2f3cfbfc5..22dfe599d 100644 --- a/include/types/sample.h +++ b/include/types/sample.h @@ -28,9 +28,10 @@ #include #include -#include #include +struct arg; + /* input and output sample types */ enum { SMP_T_ANY = 0, /* any type */