From ae114f175f739756e87ea3f4068322e782ac511c Mon Sep 17 00:00:00 2001 From: Luis Ubieda Date: Fri, 30 May 2025 16:23:35 -0400 Subject: [PATCH] tests: modem_ubx: Fix clang failure by removing static keyword Reported on latest clang-build run (250530). Signed-off-by: Luis Ubieda --- tests/subsys/modem/modem_ubx/src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/subsys/modem/modem_ubx/src/main.c b/tests/subsys/modem/modem_ubx/src/main.c index 8b04f561190..58bd4994151 100644 --- a/tests/subsys/modem/modem_ubx/src/main.c +++ b/tests/subsys/modem/modem_ubx/src/main.c @@ -91,7 +91,7 @@ static void *test_setup(void) static inline void restore_ubx_script(void) { static const struct ubx_frame frame_restored = UBX_FRAME_ACK_INITIALIZER(0x01, 0x02); - static const struct script_runner script_runner_restored = { + const struct script_runner script_runner_restored = { .script = { .request = { .buf = &test_req,