diff options
author | phintuka <phintuka> | 2010-05-21 12:38:48 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2010-05-21 12:38:48 +0000 |
commit | 33bf670f0b9ec2dd5b7c1511c4700ca75248fb5a (patch) | |
tree | 28904b413eaf1c2e68e3e387a20df57ae1411f35 | |
parent | f2f99a926de0f40a00376c3184e25f3c4cff39a9 (diff) | |
download | xineliboutput-33bf670f0b9ec2dd5b7c1511c4700ca75248fb5a.tar.gz xineliboutput-33bf670f0b9ec2dd5b7c1511c4700ca75248fb5a.tar.bz2 |
Avoid comparing signed and unsigned vars
(Thanks to Winfried Koehler)
-rw-r--r-- | xine/osd_manager.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xine/osd_manager.c b/xine/osd_manager.c index 819388da..0b91c008 100644 --- a/xine/osd_manager.c +++ b/xine/osd_manager.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: osd_manager.c,v 1.18 2010-05-16 11:57:21 phintuka Exp $ + * $Id: osd_manager.c,v 1.19 2010-05-21 12:38:48 phintuka Exp $ * */ @@ -145,7 +145,7 @@ static void clear_osdcmd(osd_command_t *cmd) */ static void osdcmd_to_overlay(vo_overlay_t *ovl, osd_command_t *cmd) { - int i; + uint i; ovl->rle = (rle_elem_t*)cmd->data; ovl->data_size = cmd->datalen; |