From 05d7d321228acea90552ea4747226c26708cd5c5 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Sat, 27 Mar 2021 10:45:49 -0400 Subject: [PATCH] posix: timer: match implementation to declaration The identifiers used in the declaration and definition of a function shall be identical [MISRAC2012-RULE_8_3-b] Signed-off-by: Anas Nashif --- lib/posix/timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/posix/timer.c b/lib/posix/timer.c index e8fb63e8d78..3eea898e97b 100644 --- a/lib/posix/timer.c +++ b/lib/posix/timer.c @@ -12,7 +12,7 @@ #define ACTIVE 1 #define NOT_ACTIVE 0 -static void zephyr_timer_wrapper(struct k_timer *timer); +static void zephyr_timer_wrapper(struct k_timer *ztimer); struct timer_obj { struct k_timer ztimer;