[MPlayer-dev-eng] [PATCH] TV auto scan and channel list in file

Bernd Ernesti mplayer-dev-eng at lists.veego.de
Sun Aug 26 16:35:47 CEST 2007


On Sun, Aug 26, 2007 at 08:17:23PM +0700, Vladimir Voroshilov wrote:
> 2007/8/26, Vladimir Voroshilov <voroshil at gmail.com>:
> > Hi, Bernd
> >
> > 2007/8/26, Bernd Ernesti <mplayer-dev-eng at lists.veego.de>:
> > >
> > > *(int*)arg = status & 0x02 ? 100 : 0;
> > >
> > > works for me.
> >
> > Let it be so.
> 
> Here is latest version which i want  to commit, if nobody will object.

I would like to see more spaces, which makes it easier to read this:
 *(int*)arg=status&0x02?100:0;

Like:
 *(int*)arg=status & 0x02 ? 100 : 0;
or
 *(int*)arg=(status & 0x02) ? 100 : 0;

Bernd




More information about the MPlayer-dev-eng mailing list