From 789a307cf98468652731a62798db13fc4363c83f Mon Sep 17 00:00:00 2001 From: Olivier Humbert Date: Wed, 8 Jul 2020 19:31:14 +0200 Subject: [PATCH] aplay: Fix typo in error message BugLink: https://github.com/alsa-project/alsa-utils/pull/44 From: Olivier Humbert Signed-off-by: Jaroslav Kysela --- aplay/aplay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aplay/aplay.c b/aplay/aplay.c index f71d0c9..b002cec 100644 --- a/aplay/aplay.c +++ b/aplay/aplay.c @@ -1284,7 +1284,7 @@ static int setup_chmap(void) } if (i >= hw_chmap->channels) { char buf[256]; - error(_("Channel %d doesn't match with hw_parmas"), ch); + error(_("Channel %d doesn't match with hw_params"), ch); snd_pcm_chmap_print(hw_chmap, sizeof(buf), buf); fprintf(stderr, "hardware chmap = %s\n", buf); free(hw_chmap);