We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d16a166 commit 2fa7fb0Copy full SHA for 2fa7fb0
1 file changed
utils/aplay/aplay.c
@@ -643,7 +643,7 @@ static void *io_worker_routine(struct io_worker *w) {
643
if (nfds <= ARRAYSIZE(fds))
644
alsa_mixer_poll_descriptors(&w->alsa_mixer, fds + 2, nfds - 2);
645
else {
646
- error("Poll FD array size exceeded: %zu > %zu", nfds, ARRAYSIZE(fds));
+ error("Poll FD array size exceeded: %zu > %zu", (size_t)nfds, ARRAYSIZE(fds));
647
goto fail;
648
}
649
0 commit comments