summaryrefslogtreecommitdiff
path: root/aplay
diff options
context:
space:
mode:
authorMatthias Braun <mb720@users.noreply.github.com>2022-04-27 19:21:32 +0200
committerJaroslav Kysela <perex@perex.cz>2022-05-03 13:28:26 +0200
commitcbf0a2fa58464a62468b2ffe493b06363130ffae (patch)
tree63a47796b9e7591976f6f332d150076dc7cfc1d0 /aplay
parent42010cfeba928afcfbd6ef289e9d547c96fdb1cf (diff)
downloadalsa-utils-cbf0a2fa58464a62468b2ffe493b06363130ffae.tar.gz
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>
Diffstat (limited to 'aplay')
-rw-r--r--aplay/aplay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/aplay/aplay.c b/aplay/aplay.c
index 4f796d2..86826c0 100644
--- a/aplay/aplay.c
+++ b/aplay/aplay.c
@@ -885,7 +885,7 @@ int main(int argc, char *argv[])
isatty(fileno(stdin)) &&
stream == SND_PCM_STREAM_CAPTURE &&
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"
" e.g. '-f S16_LE'.\n");