Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Zhang Chujun and committed by
Takashi Iwai
79d062bd 0c4a13ba

+1 -1
+1 -1
tools/testing/selftests/alsa/conf.c
··· 448 448 ksft_exit_fail_msg("key '%s'.'%s' search error: %s\n", key1, key2, snd_strerror(ret)); 449 449 ret = snd_config_get_bool(cfg); 450 450 if (ret < 0) 451 - ksft_exit_fail_msg("key '%s'.'%s' is not an bool\n", key1, key2); 451 + ksft_exit_fail_msg("key '%s'.'%s' is not a bool\n", key1, key2); 452 452 return !!ret; 453 453 } 454 454