projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
48d6b91
)
kselftest: alsa: fixed a print formatting warning
author
Ghanshyam Agrawal
<ghanshyam1898@gmail.com>
Sun, 17 Dec 2023 08:00:19 +0000
(13:30 +0530)
committer
Takashi Iwai
<tiwai@suse.de>
Mon, 18 Dec 2023 08:15:21 +0000
(09:15 +0100)
A statement used %d print formatter where %s should have
been used. The same has been fixed in this commit.
Signed-off-by: Ghanshyam Agrawal <ghanshyam1898@gmail.com>
Link:
5aaf9efffc57
("kselftest: alsa: Add simplistic test for ALSA mixer controls kselftest")
Link:
https://lore.kernel.org/r/20231217080019.1063476-1-ghanshyam1898@gmail.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
tools/testing/selftests/alsa/mixer-test.c
patch
|
blob
|
history
diff --git
a/tools/testing/selftests/alsa/mixer-test.c
b/tools/testing/selftests/alsa/mixer-test.c
index 21e482b23f5028f6e35fae82d4416a821659048e..23df154fcdd77bc04ae8b819efebbf20dcbebb12 100644
(file)
--- a/
tools/testing/selftests/alsa/mixer-test.c
+++ b/
tools/testing/selftests/alsa/mixer-test.c
@@
-138,7
+138,7
@@
static void find_controls(void)
err = snd_ctl_elem_info(card_data->handle,
ctl_data->info);
if (err < 0) {
- ksft_print_msg("%s getting info for %
d
\n",
+ ksft_print_msg("%s getting info for %
s
\n",
snd_strerror(err),
ctl_data->name);
}