git: 6286b714f5e3 - main - sound tests: Fix PVCHAN and RVCHAN fetching in sndstat_nv
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 26 Apr 2025 10:06:59 UTC
The branch main has been updated by christos:
URL: https://cgit.FreeBSD.org/src/commit/?id=6286b714f5e398cc2a87883d81aa087ee11ee310
commit 6286b714f5e398cc2a87883d81aa087ee11ee310
Author: Christos Margiolis <christos@FreeBSD.org>
AuthorDate: 2025-04-26 10:06:47 +0000
Commit: Christos Margiolis <christos@FreeBSD.org>
CommitDate: 2025-04-26 10:06:47 +0000
sound tests: Fix PVCHAN and RVCHAN fetching in sndstat_nv
Fixes: 0c0bb4c1401c ("sound: Make sndstat PVCHAN and RVCHAN nvlist parameters bool")
Reported by: CI
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
---
tests/sys/sound/sndstat.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/sys/sound/sndstat.c b/tests/sys/sound/sndstat.c
index 553c745ec950..637e640d3cff 100644
--- a/tests/sys/sound/sndstat.c
+++ b/tests/sys/sound/sndstat.c
@@ -148,10 +148,10 @@ ATF_TC_BODY(sndstat_nv, tc)
NV(number, UNIT);
NV(string, STATUS);
NV(bool, BITPERFECT);
- NV(number, PVCHAN);
+ NV(bool, PVCHAN);
NV(number, PVCHANRATE);
NV(number, PVCHANFORMAT);
- NV(number, RVCHAN);
+ NV(bool, RVCHAN);
NV(number, PVCHANRATE);
NV(number, PVCHANFORMAT);
#undef NV