Skip to content

Commit

Permalink
lib: nrf_modem_lib: Add missing comma in assert
Browse files Browse the repository at this point in the history
The recently added assert statement was missing comma.

Signed-off-by: Robert Lubos <[email protected]>
  • Loading branch information
rlubos committed Oct 31, 2024
1 parent d37d55b commit f7da8f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/nrf_modem_lib/nrf_modem_os_rpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include <zephyr/ipc/pbuf.h>

#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. */
Expand Down

0 comments on commit f7da8f5

Please sign in to comment.