Update of /cvsroot/alsa/alsa-kernel/core/oss
In directory sc8-pr-cvs1:/tmp/cvs-serv12242

Modified Files:
        pcm_plugin.c 
Log Message:
Fixed typo in rate_match()

Index: pcm_plugin.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/core/oss/pcm_plugin.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- pcm_plugin.c        21 Jul 2003 12:36:10 -0000      1.11
+++ pcm_plugin.c        21 Jul 2003 13:28:27 -0000      1.12
@@ -63,7 +63,7 @@
 static int rate_match(unsigned int src_rate, unsigned int dst_rate)
 {
        unsigned int low = (src_rate * 95) / 100;
-       unsigned int high = (src_rate * 105) / 105;
+       unsigned int high = (src_rate * 105) / 100;
        return dst_rate >= low && dst_rate <= high;
 }
 



-------------------------------------------------------
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the
same time. Free trial click here: http://www.vmware.com/wl/offer/345/0
_______________________________________________
Alsa-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-cvslog

Reply via email to