You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by cc...@apache.org on 2018/12/04 18:21:56 UTC

[mynewt-nimble] branch master updated: ble_ll_dtm.c: Add missing #include

This is an automated email from the ASF dual-hosted git repository.

ccollins pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git


The following commit(s) were added to refs/heads/master by this push:
     new 654b7d1  ble_ll_dtm.c: Add missing #include
654b7d1 is described below

commit 654b7d125cc4f25bca71f69160a7a3d1989b13af
Author: Christopher Collins <cc...@apache.org>
AuthorDate: Mon Dec 3 16:14:49 2018 -0800

    ble_ll_dtm.c: Add missing #include
---
 nimble/controller/src/ble_ll_dtm.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/nimble/controller/src/ble_ll_dtm.c b/nimble/controller/src/ble_ll_dtm.c
index 0d6ab4a..33a0e02 100644
--- a/nimble/controller/src/ble_ll_dtm.c
+++ b/nimble/controller/src/ble_ll_dtm.c
@@ -17,11 +17,12 @@
  * under the License.
  */
 
-#include <syscfg/syscfg.h>
+#include "syscfg/syscfg.h"
+#include "sysinit/sysinit.h"
 
 #if MYNEWT_VAL(BLE_LL_DIRECT_TEST_MODE) == 1
 
-#include "assert.h"
+#include <assert.h>
 #include "os/os.h"
 #include "stats/stats.h"
 #include "controller/ble_ll.h"