aplay: fix a typo in warning (inaudiable -> inaudible)

From: Matthias Braun (https://github.com/mb720)
Fixes: https://github.com/alsa-project/alsa-utils/pull/143
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
Matthias Braun 2022-04-27 19:21:32 +02:00 committed by Jaroslav Kysela
parent 42010cfeba
commit cbf0a2fa58

View file

@ -885,7 +885,7 @@ int main(int argc, char *argv[])
isatty(fileno(stdin)) && isatty(fileno(stdin)) &&
stream == SND_PCM_STREAM_CAPTURE && stream == SND_PCM_STREAM_CAPTURE &&
snd_pcm_format_width(rhwparams.format) <= 8) snd_pcm_format_width(rhwparams.format) <= 8)
fprintf(stderr, "Warning: Some sources (like microphones) may produce inaudiable results\n" fprintf(stderr, "Warning: Some sources (like microphones) may produce inaudible results\n"
" with 8-bit sampling. Use '-f' argument to increase resolution\n" " with 8-bit sampling. Use '-f' argument to increase resolution\n"
" e.g. '-f S16_LE'.\n"); " e.g. '-f S16_LE'.\n");