summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhang Chujun <zhangchujun@cmss.chinamobile.com>2025-11-06 13:58:19 +0800
committerTakashi Iwai <tiwai@suse.de>2025-11-06 11:47:36 +0100
commit79d062bdefbd404e6b350d04f3099617a2b82933 (patch)
treea5b145028ab9334da3976e8b9df38e42645aae4c
parent0c4a13ba88594fd4a27292853e736c6b4349823d (diff)
selftest/alsa: correct grammar in conf_get_bool error string
The phrase "an bool" is grammatically incorrect; it should be "a bool". Signed-off-by: Zhang Chujun <zhangchujun@cmss.chinamobile.com> Link: https://patch.msgid.link/20251106055819.1996-1-zhangchujun@cmss.chinamobile.com Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r--tools/testing/selftests/alsa/conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/alsa/conf.c b/tools/testing/selftests/alsa/conf.c
index e2b3a5810f47..dc7f40e68dee 100644
--- a/tools/testing/selftests/alsa/conf.c
+++ b/tools/testing/selftests/alsa/conf.c
@@ -448,7 +448,7 @@ int conf_get_bool(snd_config_t *root, const char *key1, const char *key2, int de
ksft_exit_fail_msg("key '%s'.'%s' search error: %s\n", key1, key2, snd_strerror(ret));
ret = snd_config_get_bool(cfg);
if (ret < 0)
- ksft_exit_fail_msg("key '%s'.'%s' is not an bool\n", key1, key2);
+ ksft_exit_fail_msg("key '%s'.'%s' is not a bool\n", key1, key2);
return !!ret;
}