[MPlayer-cvslog] r24158 - trunk/input/input.c

Rich Felker dalias at aerifal.cx
Sat Aug 25 18:04:11 CEST 2007


On Sat, Aug 25, 2007 at 09:35:35AM +0200, reimar wrote:
> Author: reimar
> Date: Sat Aug 25 09:35:35 2007
> New Revision: 24158
> 
> Log:
> Hack around broken bitfields in gcc 4.2
> 
> 
> Modified:
>    trunk/input/input.c
> 
> Modified: trunk/input/input.c
> ==============================================================================
> --- trunk/input/input.c	(original)
> +++ trunk/input/input.c	Sat Aug 25 09:35:35 2007
> @@ -609,7 +609,8 @@ mp_input_add_cmd_fd(int fd, int select, 
>    cmd_fds[num_cmd_fd].fd = fd;
>    cmd_fds[num_cmd_fd].read_func = read_func ? read_func : mp_input_default_cmd_func;
>    cmd_fds[num_cmd_fd].close_func = close_func;
> -  cmd_fds[num_cmd_fd].no_select = !select;
> +  if (!select)
> +    cmd_fds[num_cmd_fd].no_select = 1;

Any explanation of what the "broken bitfields" bug is? This seems
exceedingly bad of gcc...

Rich



More information about the MPlayer-cvslog mailing list