diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-15 13:29:46 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-15 13:29:46 +0200 |
commit | 237ff9d2d183d3b8b79376a95511da91ce8ed1d9 (patch) | |
tree | b2d649f5e4293a76e935ba0e0a50dc2934a618c2 /src | |
parent | 85daa93ae33d2336b4146ad18bf67a3e6c6202e9 (diff) | |
download | xine-lib-237ff9d2d183d3b8b79376a95511da91ce8ed1d9.tar.gz xine-lib-237ff9d2d183d3b8b79376a95511da91ce8ed1d9.tar.bz2 |
Change variable to be size_t if sizeof() is used to compare to it.
Diffstat (limited to 'src')
-rw-r--r-- | src/video_out/video_out_fb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_out/video_out_fb.c b/src/video_out/video_out_fb.c index c6b8f597a..3ca39b89d 100644 --- a/src/video_out/video_out_fb.c +++ b/src/video_out/video_out_fb.c @@ -430,7 +430,7 @@ static void fb_update_frame_format(vo_driver_t *this_gen, static void fb_overlay_clut_yuv2rgb(fb_driver_t *this, vo_overlay_t *overlay, fb_frame_t *frame) { - int i; + size_t i; clut_t* clut = (clut_t*)overlay->color; if(!overlay->rgb_clut) |