From 713fdb1ac4475b51f2d93dc3a077387149d5762e Mon Sep 17 00:00:00 2001 From: Denis Biryukov Date: Tue, 18 Jun 2024 15:37:46 +0200 Subject: [PATCH] void unused arg --- tests/z_api_alignment_test.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/z_api_alignment_test.c b/tests/z_api_alignment_test.c index 79ba3add4..8ed72b264 100644 --- a/tests/z_api_alignment_test.c +++ b/tests/z_api_alignment_test.c @@ -54,6 +54,7 @@ void zid_handler(const z_id_t *id, void *arg) { volatile unsigned int hellos = 0; void hello_handler(const z_loaned_hello_t *hello, void *arg) { + (void)hello; (void)(arg); printf("%s\n", __func__); hellos++;