Skip to content

Commit

Permalink
libplatsupport: use proper format specifier
Browse files Browse the repository at this point in the history
Signed-off-by: Axel Heider <axelheider@gmx.de>
  • Loading branch information
axel-h authored and Indanz committed Mar 2, 2024
1 parent 8b1cf8c commit 1b55577
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libplatsupport/src/plat/hifive/ltimer.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ static int ltimer_handle_irq(void *data, ps_irq_t *irq)
pwm_handle_irq(&timers->pwm_ltimers[TIMEOUT_TIMER].pwm, irq->irq.number);
event = LTIMER_TIMEOUT_EVENT;
} else {
ZF_LOGE("Invalid IRQ number: %d received.\n", irq_number);
ZF_LOGE("Invalid IRQ number: %ld received.\n", irq_number);
}

if (timers->user_callback) {
Expand Down

0 comments on commit 1b55577

Please sign in to comment.