Skip to content
Snippets Groups Projects
Commit 5ede3a82 authored by Ludwig Knüpfer's avatar Ludwig Knüpfer
Browse files

fix ignore_add unused parameter warning

parent 24defa52
Branches
No related tags found
No related merge requests found
......@@ -1008,8 +1008,9 @@ static void switch_to_rx(transceiver_type_t t)
}
#ifdef DBG_IGNORE
static int16_t ignore_add(transceiver_type_t t, void *address)
static int16_t ignore_add(transceiver_type_t unused, void *address)
{
(void) unused;
radio_address_t addr = *((radio_address_t *)address);
for (uint8_t i = 0; i < MAX_IGNORED_ADDR; i++) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment