Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/tests/lib/libossaudio s/suported/supported in comments



details:   https://anonhg.NetBSD.org/src/rev/3e0f6a4d3e9d
branches:  trunk
changeset: 1022703:3e0f6a4d3e9d
user:      andvar <andvar%NetBSD.org@localhost>
date:      Mon Aug 02 17:43:55 2021 +0000

description:
s/suported/supported in comments

diffstat:

 tests/lib/libossaudio/t_ossaudio.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r 990a7f60f41a -r 3e0f6a4d3e9d tests/lib/libossaudio/t_ossaudio.c
--- a/tests/lib/libossaudio/t_ossaudio.c        Mon Aug 02 17:41:07 2021 +0000
+++ b/tests/lib/libossaudio/t_ossaudio.c        Mon Aug 02 17:43:55 2021 +0000
@@ -250,7 +250,7 @@
         * and some unsupported sample rates... "best effort"
         */
 
-       /* closest suported rate is 1000 */
+       /* closest supported rate is 1000 */
        rate = 900;
        if (ioctl(fd, SNDCTL_DSP_SPEED, &rate) < 0)
                atf_tc_fail("ioctl SNDCTL_DSP_SPEED (900) failed");
@@ -259,7 +259,7 @@
        ATF_REQUIRE((fabs(900.0 - info.play.sample_rate) / 900.0) < 0.2);
        ATF_REQUIRE_EQ(rate, (int)info.play.sample_rate);
 
-       /* closest suported rate is 192000 */
+       /* closest supported rate is 192000 */
        rate = 197000;
        if (ioctl(fd, SNDCTL_DSP_SPEED, &rate) < 0)
                atf_tc_fail("ioctl SNDCTL_DSP_SPEED (197000) failed");



Home | Main Index | Thread Index | Old Index