From c3331a61537850efbf461919560dce8444b47a7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eivind=20J=C3=B8lsgard?= Date: Fri, 12 Dec 2025 14:26:16 +0100 Subject: [PATCH] softdevice_handler: correct return type of sdh_state_evt_observer_notify MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Correct return type of sdh_state_evt_observer_notify extern in nrf_sdh_ble.c Signed-off-by: Eivind Jølsgard --- subsys/softdevice_handler/nrf_sdh_ble.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsys/softdevice_handler/nrf_sdh_ble.c b/subsys/softdevice_handler/nrf_sdh_ble.c index ea803a6c1f..1b4bca8cb0 100644 --- a/subsys/softdevice_handler/nrf_sdh_ble.c +++ b/subsys/softdevice_handler/nrf_sdh_ble.c @@ -27,7 +27,7 @@ LOG_MODULE_DECLARE(nrf_sdh, CONFIG_NRF_SDH_LOG_LEVEL); BUILD_ASSERT(PERIPHERAL_LINKS + CENTRAL_LINKS <= CONFIG_NRF_SDH_BLE_TOTAL_LINK_COUNT, "Invalid link configuration"); -extern int sdh_state_evt_observer_notify(enum nrf_sdh_state_evt state); +extern bool sdh_state_evt_observer_notify(enum nrf_sdh_state_evt state); const char *nrf_sdh_ble_evt_to_str(uint32_t evt) {