Skip to content

Commit

Permalink
Remove unused warning in async_context_freertos
Browse files Browse the repository at this point in the history
  • Loading branch information
earlephilhower committed Dec 6, 2023
1 parent 263a668 commit 02055e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rp2_common/pico_async_context/async_context_freertos.c
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ static void async_context_freertos_set_work_pending(async_context_t *self_base,
async_context_freertos_wake_up(self_base);
}

static void async_context_freertos_wait_until(async_context_t *self_base, absolute_time_t until) {
static void async_context_freertos_wait_until(__unused async_context_t *self_base, absolute_time_t until) {
assert(!portCHECK_IF_IN_ISR());
TickType_t ticks = sensible_ticks_until(until);
vTaskDelay(ticks);
Expand Down

0 comments on commit 02055e5

Please sign in to comment.