You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by je...@apache.org on 2020/12/11 21:07:40 UTC

[mynewt-nimble] branch master updated: ble_store_config: Remove unneeded include

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

jerzy 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 542806a  ble_store_config: Remove unneeded include
542806a is described below

commit 542806abc0345caf2ea0e4536289062ddc42ff77
Author: Jerzy Kasenberg <je...@codecoup.pl>
AuthorDate: Tue Dec 8 11:11:52 2020 +0100

    ble_store_config: Remove unneeded include
    
    sys/config is conditionally included in pkg.yml yet
    ble_store_config.c tried to included "config/config.h" always.
    
    ble_store_config.c does not used content of config.h anyway
    so include is removed.
---
 nimble/host/store/config/src/ble_store_config.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/nimble/host/store/config/src/ble_store_config.c b/nimble/host/store/config/src/ble_store_config.c
index ce60d1f..cc1d59a 100644
--- a/nimble/host/store/config/src/ble_store_config.c
+++ b/nimble/host/store/config/src/ble_store_config.c
@@ -23,7 +23,6 @@
 #include "sysinit/sysinit.h"
 #include "syscfg/syscfg.h"
 #include "host/ble_hs.h"
-#include "config/config.h"
 #include "base64/base64.h"
 #include "store/config/ble_store_config.h"
 #include "ble_store_config_priv.h"