[vlc-devel] [PATCH 2/9] preparser: use unsigned for an array count
    Thomas Guillem 
    thomas at gllm.fr
       
    Sun Jun  5 11:41:43 CEST 2016
    
    
  
---
 src/playlist/preparser.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/playlist/preparser.c b/src/playlist/preparser.c
index f360a47..6f365e4 100644
--- a/src/playlist/preparser.c
+++ b/src/playlist/preparser.c
@@ -57,7 +57,7 @@ struct playlist_preparser_t
     vlc_cond_t      thread_wait;
     bool            b_live;
     preparser_entry_t  **pp_waiting;
-    int             i_waiting;
+    unsigned int    i_waiting;
 };
 
 static void *Thread( void * );
-- 
2.8.1
    
    
More information about the vlc-devel
mailing list