check fix: Mark argument to debug function as unused

The md argument will only be used when compiling with debug_ functions
enabled
This commit is contained in:
Mikael Ågren 2025-04-09 12:34:46 +02:00
parent fba3b45380
commit c14f8d634a
No known key found for this signature in database
GPG key ID: E02DA3D397792C46

View file

@ -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();
}