]> git.alsa-project.org Git - alsa-utils.git/commitdiff
aplay: fix a typo in warning (inaudiable -> inaudible)
authorMatthias Braun <mb720@users.noreply.github.com>
Wed, 27 Apr 2022 17:21:32 +0000 (19:21 +0200)
committerJaroslav Kysela <perex@perex.cz>
Tue, 3 May 2022 11:28:26 +0000 (13:28 +0200)
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>
aplay/aplay.c

index 4f796d20308ad077aaa6bde7624b6f6d0e38609f..86826c01441ba939399cbf72c645bb95b7706417 100644 (file)
@@ -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");