# HG changeset patch # User nplourde # Date 1117064695 0 # Node ID ab43da229a76c9ae3e0aab5342d33e78f5cfa11e # Parent f197f4a60b20e625dcac980d8f7694ee84924b6f fix signess warning diff -r f197f4a60b20 -r ab43da229a76 libvo/vo_macosx.m --- a/libvo/vo_macosx.m Wed May 25 23:38:59 2005 +0000 +++ b/libvo/vo_macosx.m Wed May 25 23:44:55 2005 +0000 @@ -131,7 +131,7 @@ aspect_save_orig(width,height); aspect_save_prescale(d_width,d_height); aspect_save_screenres(device_width,device_height); - aspect(&d_width,&d_height,A_NOZOOM); + aspect((int *)&d_width,(int *)&d_height,A_NOZOOM); movie_aspect = (float)d_width/(float)d_height; old_movie_aspect = movie_aspect; @@ -542,7 +542,7 @@ //set image_rec if(vo_keepaspect) { - aspect( &d_width, &d_height, A_NOZOOM); + aspect( (int *)&d_width, (int *)&d_height, A_NOZOOM); d_height = ((float)d_width/movie_aspect); aspectX = (float)((float)frame.size.width/(float)d_width);