Skip to content

Commit 79d062b

Browse files
Zhang Chujuntiwai
authored andcommitted
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>
1 parent 0c4a13b commit 79d062b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • tools/testing/selftests/alsa

tools/testing/selftests/alsa/conf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ int conf_get_bool(snd_config_t *root, const char *key1, const char *key2, int de
448448
ksft_exit_fail_msg("key '%s'.'%s' search error: %s\n", key1, key2, snd_strerror(ret));
449449
ret = snd_config_get_bool(cfg);
450450
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);
452452
return !!ret;
453453
}
454454

0 commit comments

Comments
 (0)