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 cc556e97f porting: Add missing return statement
cc556e97f is described below
commit cc556e97f4dc1da30ee7274f2b08e4e2a47535cf
Author: Mingjie Shen <[email protected]>
AuthorDate: Tue Jul 18 21:40:14 2023 -0400
porting: Add missing return statement
---
porting/npl/dummy/src/npl_os_dummy.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/porting/npl/dummy/src/npl_os_dummy.c
b/porting/npl/dummy/src/npl_os_dummy.c
index a522531fa..059e1a689 100644
--- a/porting/npl/dummy/src/npl_os_dummy.c
+++ b/porting/npl/dummy/src/npl_os_dummy.c
@@ -41,6 +41,7 @@ ble_npl_eventq_init(struct ble_npl_eventq *evq)
struct ble_npl_event *
ble_npl_eventq_get(struct ble_npl_eventq *evq, ble_npl_time_t tmo)
{
+ return NULL;
}
void