From c14f8d634acb196410d59d79714a01388188d39a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikael=20=C3=85gren?= Date: Wed, 9 Apr 2025 12:34:46 +0200 Subject: [PATCH] check fix: Mark argument to debug function as unused The md argument will only be used when compiling with debug_ functions enabled --- hw/application_fpga/fw/tk1/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/application_fpga/fw/tk1/main.c b/hw/application_fpga/fw/tk1/main.c index a457d20..0b3b3d3 100644 --- a/hw/application_fpga/fw/tk1/main.c +++ b/hw/application_fpga/fw/tk1/main.c @@ -93,6 +93,7 @@ static void print_digest(uint8_t *md) for (int j = 0; j < 4; j++) { for (int i = 0; i < 8; i++) { debug_puthex(md[i + 8 * j]); + (void)md; } debug_lf(); }