]> git.sesse.net Git - vlc/commitdiff
Fixed support for negative module priority.
authorLaurent Aimar <fenrir@videolan.org>
Wed, 8 Oct 2008 19:15:06 +0000 (21:15 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Wed, 8 Oct 2008 19:15:06 +0000 (21:15 +0200)
src/modules/modules.c

index 2d0cb7b768dc77d31f51ce45033e87c061323680..d6540cd0d19a6573b2f47824a9ea5edf34c93786 100644 (file)
@@ -382,7 +382,7 @@ module_t **module_list_get (size_t *n)
 typedef struct module_list_t
 {
     module_t *p_module;
-    uint16_t i_score;
+    int16_t  i_score;
     bool     b_force;
 } module_list_t;