[vlc-devel] [PATCH 4/9] preparser: use unsigned for an array count

Thomas Guillem thomas at gllm.fr
Wed Jun 1 13:24:48 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 b61050c..a913c70 100644
--- a/src/playlist/preparser.c
+++ b/src/playlist/preparser.c
@@ -55,7 +55,7 @@ struct playlist_preparser_t
     vlc_cond_t      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