[MPlayer-cvslog] r23001 - trunk/vidix/pm2_vid.c

Rich Felker dalias at aerifal.cx
Mon Apr 16 05:47:32 CEST 2007


On Sun, Apr 15, 2007 at 06:08:41PM +0200, ben wrote:
> Author: ben
> Date: Sun Apr 15 18:08:40 2007
> New Revision: 23001
> 
> Modified:
>    trunk/vidix/pm2_vid.c
> 
> Log:
> u_int seems unknown under mingw
> 
> Modified: trunk/vidix/pm2_vid.c
> ==============================================================================
> --- trunk/vidix/pm2_vid.c	(original)
> +++ trunk/vidix/pm2_vid.c	Sun Apr 15 18:08:40 2007
> @@ -76,17 +76,17 @@ static vidix_capability_t pm2_cap =
>      { 0, 0, 0, 0 }
>  };
>  
> -static u_int pm2_card_ids[] =
> +static uint32_t pm2_card_ids[] =

This is an incorrect fix. It should be "unsigned int". The original
did not request 32 bits so the fix should not.

If exactly a 32bit type is really needed, then the commit message is
incorrect and should be fixed.

Rich



More information about the MPlayer-cvslog mailing list