diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 2008-10-30 06:22:39 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 2008-10-30 06:22:39 +0000 |
commit | 5d86b8ed7c343af23115a043bbadf9900787ff05 (patch) | |
tree | cb3a3565d0034118c6f04158a716f04cc27dc997 /sys/arch/macppc | |
parent | a2d593803c75c3ad83adacec01aabd09dc5b5270 (diff) |
ugh, typo fix, committed previous from the wrong tree
Diffstat (limited to 'sys/arch/macppc')
-rw-r--r-- | sys/arch/macppc/dev/awacs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/macppc/dev/awacs.c b/sys/arch/macppc/dev/awacs.c index 6f6a8215bb0..be1e2629dff 100644 --- a/sys/arch/macppc/dev/awacs.c +++ b/sys/arch/macppc/dev/awacs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: awacs.c,v 1.23 2008/10/30 06:12:47 todd Exp $ */ +/* $OpenBSD: awacs.c,v 1.24 2008/10/30 06:22:38 todd Exp $ */ /* $NetBSD: awacs.c,v 1.4 2001/02/26 21:07:51 wiz Exp $ */ /*- @@ -598,7 +598,7 @@ awacs_set_params(void *h, int setmode, int usemode, struct audio_params *play, switch (p->encoding) { case AUDIO_ENCODING_SLINEAR_LE: - if (p->percision != 16) + if (p->precision != 16) p->precision = 16; if (p->channels == 2) p->sw_code = swap_bytes; |