You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ja...@apache.org on 2022/03/21 08:14:16 UTC

[mynewt-nimble] branch master updated: nimble/host: Fix tests compilation

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

janc 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 336eff8  nimble/host: Fix tests compilation
336eff8 is described below

commit 336eff834ebc7cd7685fe1daf754e37473edca5b
Author: Szymon Janc <sz...@codecoup.pl>
AuthorDate: Fri Mar 18 16:40:44 2022 +0100

    nimble/host: Fix tests compilation
    
    This fix build regression after BLE_MONITOR was moved to transport.
---
 nimble/host/test/src/ble_hs_test_util.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/nimble/host/test/src/ble_hs_test_util.c b/nimble/host/test/src/ble_hs_test_util.c
index 6a83816..c336ddf 100644
--- a/nimble/host/test/src/ble_hs_test_util.c
+++ b/nimble/host/test/src/ble_hs_test_util.c
@@ -1849,14 +1849,14 @@ ble_hs_test_util_assert_mbufs_freed(
 }
 
 int
-ble_transport_to_ll_acl(struct os_mbuf *om)
+ble_transport_to_ll_acl_impl(struct os_mbuf *om)
 {
     ble_hs_test_util_prev_tx_enqueue(om);
     return 0;
 }
 
 int
-ble_transport_to_ll_cmd(void *buf)
+ble_transport_to_ll_cmd_impl(void *buf)
 {
     ble_hs_test_util_hci_out_enqueue(buf);
     ble_transport_free(buf);
@@ -2046,4 +2046,4 @@ void
 ble_transport_ll_init(void)
 {
     /* nothing here */
-}
\ No newline at end of file
+}