From 1a515e154e524010cfa5a56f1be13bdab3009024 Mon Sep 17 00:00:00 2001 From: Miao-chen Chou Date: Fri, 11 Sep 2020 23:49:59 -0700 Subject: [PATCH] adapter: Remove indirect dependency of headers Given that adapter.h refers symbols from lib/bluetooth.h and lib/sdp.h, these two headers should be included directly in adapter.h. --- src/adapter.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/adapter.h b/src/adapter.h index f8ac20261..c70a7b0da 100644 --- a/src/adapter.h +++ b/src/adapter.h @@ -26,6 +26,9 @@ #include #include +#include +#include + #define MAX_NAME_LENGTH 248 /* Invalid SSP passkey value used to indicate negative replies */ -- 2.47.3