Skip to content

Commit f7da8f5

Browse files
committed
lib: nrf_modem_lib: Add missing comma in assert
The recently added assert statement was missing comma. Signed-off-by: Robert Lubos <robert.lubos@nordicsemi.no>
1 parent d37d55b commit f7da8f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/nrf_modem_lib/nrf_modem_os_rpc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#include <zephyr/ipc/pbuf.h>
2020

2121
#define DCACHE_LINE_SIZE (CONFIG_DCACHE_LINE_SIZE)
22-
BUILD_ASSERT(DCACHE_LINE_SIZE == 32
22+
BUILD_ASSERT(DCACHE_LINE_SIZE == 32,
2323
"Unexpected data cache line size " STRINGIFY(DCACHE_LINE_SIZE) ", expected 32");
2424

2525
/** Structure to hold pbuf configuration and data. */

0 commit comments

Comments
 (0)