qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] Re: [PATCH 3/4] Use C99 initializers for audio_option


From: malc
Subject: [Qemu-devel] Re: [PATCH 3/4] Use C99 initializers for audio_option
Date: Tue, 28 Jul 2009 21:39:54 +0400 (MSD)

On Tue, 28 Jul 2009, Juan Quintela wrote:

> malc <address@hidden> wrote:
> > On Tue, 28 Jul 2009, Juan Quintela wrote:
> >
> >> malc <address@hidden> wrote:
> >> > On Mon, 27 Jul 2009, Juan Quintela wrote:
> >> >
> >> > I'd prefer:
> >> >
> >> >        { .name  = "DAC_SIZE_IN_USEC",
> >> >          .tag   = AUD_OPT_BOOL,
> >> >          .valp  = &conf.size_in_usec_out,
> >> >          .descr = "DAC period/buffer size in microseconds (otherwise in 
> >> > frames)" },
> >> >        { ...
> >> >
> >> > And likewise elsewhere.
> >> 
> >> I tried to be consistent with the qdev patches, they add all its "arrays
> >> of structures" this way (it is one of the bigger users of the feature
> >> that I saw).
> >
> > Let's look at original example:
> >
> > +    {
> > +        .name = "DAC_SIZE_IN_USEC",
> > +        .tag = AUD_OPT_BOOL,
> > +        .valp = &conf.size_in_usec_out,
> > +        .descr = "DAC period/buffer size in microseconds (otherwise in 
> > frames)"
> > +    },{
> >
> > It's internally inconsistent (begins with a bsd style ends with k&r,
> > and on top of that without space after comma). Should either be done
> > the way i mentioned earlier or with:
> >
> > {
> >   ...
> > },
> > {
> > }
> >
> > And i much prefer the former.
> 
> I was trying to be consistent with rest of qemu:
> 
> (simple-config-7*)$ find . -name "*.[ch]" | xargs grep " },{$" | wc -l
> 42
> (simple-config-7*)$ find . -name "*.[ch]" | xargs grep " }, {$" | wc -l
> 18

Alrighty then:

qemu$ find . -name "*.[ch]" | xargs grep " },$" | wc -l
10294

> 
> I don't mean going one way or the other, but I would like that everbody
> decided what was the "right" position of the braces.  If possible, not
> one style by directory.

Once again - i do understand the motivation, i just don't see much point.
I just happen to like the code i maintain to look internally consistent.

-- 
mailto:address@hidden




reply via email to

[Prev in Thread] Current Thread [Next in Thread]