diff options
author | phintuka <phintuka> | 2008-05-19 06:54:58 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2008-05-19 06:54:58 +0000 |
commit | 877bfac90aedaeb6c0828cbfb90966e5fab88c20 (patch) | |
tree | 53cf76cfb3a529e3ca474de4d94da6285c25b2bf /device.c | |
parent | 81a77560e0a86ed522d779386e44e75c78d15f5d (diff) | |
download | xineliboutput-877bfac90aedaeb6c0828cbfb90966e5fab88c20.tar.gz xineliboutput-877bfac90aedaeb6c0828cbfb90966e5fab88c20.tar.bz2 |
int -> size_t
Diffstat (limited to 'device.c')
-rw-r--r-- | device.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: device.c,v 1.58 2008-05-18 19:42:33 phintuka Exp $ + * $Id: device.c,v 1.59 2008-05-19 06:54:57 phintuka Exp $ * */ @@ -1619,7 +1619,8 @@ void cXinelibDevice::EnsureDvdSpuTrack(void) strcmp(m_DvdSpuTrack[0].language, "menu"))) { if(xc.spu_autoshow) { - int pref, len, track; + int pref, track; + size_t len; for(pref = 0; pref < 4; pref++) for(track = 0; track < 64; track++) if(m_DvdSpuTrack[track].id != 0xffff) |