[vlc-devel] commit: Fixed support for negative module priority. (Laurent Aimar )

git version control git at videolan.org
Wed Oct 8 21:15:40 CEST 2008


vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Wed Oct  8 21:15:06 2008 +0200| [ae578e67c27fe06d60efb507590d4e52b7a02796] | committer: Laurent Aimar 

Fixed support for negative module priority.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ae578e67c27fe06d60efb507590d4e52b7a02796
---

 src/modules/modules.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/modules/modules.c b/src/modules/modules.c
index 2d0cb7b..d6540cd 100644
--- a/src/modules/modules.c
+++ b/src/modules/modules.c
@@ -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;
 




More information about the vlc-devel mailing list