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 21957a460 porting: fix missing include for stdio
21957a460 is described below
commit 21957a460553022f792aedfd8ff6b079e168bbb7
Author: Bas van den Berg <[email protected]>
AuthorDate: Mon Mar 31 11:59:37 2025 +0200
porting: fix missing include for stdio
It is needed for vprinf
---
porting/npl/freertos/include/nimble/nimble_npl_os_log.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/porting/npl/freertos/include/nimble/nimble_npl_os_log.h
b/porting/npl/freertos/include/nimble/nimble_npl_os_log.h
index 5fcce6aee..24315a21a 100644
--- a/porting/npl/freertos/include/nimble/nimble_npl_os_log.h
+++ b/porting/npl/freertos/include/nimble/nimble_npl_os_log.h
@@ -21,6 +21,7 @@
#define _NIMBLE_NPL_OS_LOG_H_
#include <stdarg.h>
+#include <stdio.h>
/* Example on how to use macro to generate module logging functions */
#define BLE_NPL_LOG_IMPL(lvl) \