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

Modified Files:
        pcm_native.c 
Log Message:
fixed compile warnings.



Index: pcm_native.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/core/pcm_native.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- pcm_native.c        23 Feb 2003 19:44:29 -0000      1.46
+++ pcm_native.c        28 Feb 2003 14:13:53 -0000      1.47
@@ -2020,7 +2020,7 @@
        else
                frames -= frames % runtime->xfer_align;
        appl_ptr = runtime->control->appl_ptr + frames;
-       if (appl_ptr >= runtime->boundary)
+       if (appl_ptr >= (snd_pcm_sframes_t)runtime->boundary)
                appl_ptr -= runtime->boundary;
        runtime->control->appl_ptr = appl_ptr;
        if (runtime->status->state == SNDRV_PCM_STATE_RUNNING &&
@@ -2070,7 +2070,7 @@
        else
                frames -= frames % runtime->xfer_align;
        appl_ptr = runtime->control->appl_ptr + frames;
-       if (appl_ptr >= runtime->boundary)
+       if (appl_ptr >= (snd_pcm_sframes_t)runtime->boundary)
                appl_ptr -= runtime->boundary;
        runtime->control->appl_ptr = appl_ptr;
        if (runtime->status->state == SNDRV_PCM_STATE_RUNNING &&



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Alsa-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-cvslog

Reply via email to