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

Modified Files:
        timer.c 
Log Message:
fixed a compile warning regarding signed and unsigned comparison.



Index: timer.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/core/timer.c,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- timer.c     2 Mar 2003 19:13:02 -0000       1.36
+++ timer.c     3 Mar 2003 11:31:18 -0000       1.37
@@ -1665,7 +1665,7 @@
        tu = snd_magic_cast(snd_timer_user_t, file->private_data, return -ENXIO);
        unit = tu->tread ? sizeof(snd_timer_tread_t) : sizeof(snd_timer_read_t);
        spin_lock_irq(&tu->qlock);
-       while (count - result >= unit) {
+       while ((long)count - result >= unit) {
                while (!tu->qused) {
                        wait_queue_t wait;
 



-------------------------------------------------------
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