From 4355d07fcd36e4bf9637a6f55a0f6cf8ae33a681 Mon Sep 17 00:00:00 2001 From: Noemie Gillet Date: Mon, 4 Nov 2024 17:49:50 +0100 Subject: [PATCH] test: posix: timer: fix format change { 0 } to {0} Signed-off-by: Noemie Gillet --- tests/posix/common/src/timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/posix/common/src/timer.c b/tests/posix/common/src/timer.c index 5f1e788b67f..55a69e1ee71 100644 --- a/tests/posix/common/src/timer.c +++ b/tests/posix/common/src/timer.c @@ -104,7 +104,7 @@ ZTEST(timer, test_CLOCK_MONOTONIC__SIGEV_THREAD) ZTEST(timer, test_timer_overrun) { - struct sigevent sig = { 0 }; + struct sigevent sig = {0}; struct itimerspec value; sig.sigev_notify = SIGEV_NONE;