From 4acd63a7cf4b8d54dc41b15245b62bbedab3a768 Mon Sep 17 00:00:00 2001 From: Robert Lubos Date: Thu, 31 Oct 2024 22:06:49 +0100 Subject: [PATCH] lib: nrf_modem_lib: Add missing comma in assert The recently added assert statement was missing comma. Signed-off-by: Robert Lubos --- lib/nrf_modem_lib/nrf_modem_os_rpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nrf_modem_lib/nrf_modem_os_rpc.c b/lib/nrf_modem_lib/nrf_modem_os_rpc.c index 033299e4f9e7..50ed6486a76c 100644 --- a/lib/nrf_modem_lib/nrf_modem_os_rpc.c +++ b/lib/nrf_modem_lib/nrf_modem_os_rpc.c @@ -19,7 +19,7 @@ #include #define DCACHE_LINE_SIZE (CONFIG_DCACHE_LINE_SIZE) -BUILD_ASSERT(DCACHE_LINE_SIZE == 32 +BUILD_ASSERT(DCACHE_LINE_SIZE == 32, "Unexpected data cache line size " STRINGIFY(DCACHE_LINE_SIZE) ", expected 32"); /** Structure to hold pbuf configuration and data. */