[vlc-commits] Xiph: fix sign warning
    Jean-Baptiste Kempf 
    git at videolan.org
       
    Sat Nov 30 21:31:18 CET 2013
    
    
  
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Nov 29 19:28:46 2013 +0100| [b22c4573a3c206c9a67465f082c8551acc53147b] | committer: Jean-Baptiste Kempf
Xiph: fix sign warning
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b22c4573a3c206c9a67465f082c8551acc53147b
---
 modules/demux/xiph.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/demux/xiph.h b/modules/demux/xiph.h
index 01c617c..7d24428 100644
--- a/modules/demux/xiph.h
+++ b/modules/demux/xiph.h
@@ -85,7 +85,7 @@ static inline int xiph_SplitHeaders(unsigned packet_size[], void * packet[], uns
     }
     else
     {
-        unsigned size = 0;
+        int size = 0;
         for (unsigned i = 0; i < count - 1; i++) {
             packet_size[i] = 0;
             for (;;) {
    
    
More information about the vlc-commits
mailing list