Re: [PATCH] Add spaces on either side of case "..." operator.

2007-04-10 Thread Alexey Dobriyan
On Tue, Apr 10, 2007 at 10:47:21AM -0700, Jeremy Fitzhardinge wrote: > Andrew Morton wrote: > > #define AUDIT_FIRST_USER_MSG1100/* Userspace messages mostly > > uninteresting to kernel */ > > #define AUDIT_USER_AVC 1107/* We filter this differently */ > > #define

Re: [PATCH] Add spaces on either side of case "..." operator.

2007-04-10 Thread Alexey Dobriyan
On Tue, Apr 10, 2007 at 09:05:55AM -0700, Andrew Morton wrote: > On Tue, 10 Apr 2007 07:23:35 -0400 (EDT) "Robert P. J. Day" <[EMAIL > PROTECTED]> wrote: > > Following the programming advice laid down in the gcc manual, make > > sure the case "..." operator has spaces on either side. > >

Re: [PATCH] Add spaces on either side of case "..." operator.

2007-04-10 Thread Jeremy Fitzhardinge
Andrew Morton wrote: > #define AUDIT_FIRST_USER_MSG1100/* Userspace messages mostly > uninteresting to kernel */ > #define AUDIT_USER_AVC 1107/* We filter this differently */ > #define AUDIT_LAST_USER_MSG 1199 > > and CPP turns that into > > case 1100 ...1199: > case

Re: [PATCH] Add spaces on either side of case "..." operator.

2007-04-10 Thread Andrew Morton
On Tue, 10 Apr 2007 07:23:35 -0400 (EDT) "Robert P. J. Day" <[EMAIL PROTECTED]> wrote: > Following the programming advice laid down in the gcc manual, make > sure the case "..." operator has spaces on either side. > > Signed-off-by: Robert P. J. Day <[EMAIL PROTECTED]> > > --- > > According

Re: [PATCH] Add spaces on either side of case "..." operator.

2007-04-10 Thread WANG Cong
On Tue, Apr 10, 2007 at 07:23:35AM -0400, Robert P. J. Day wrote: > >Following the programming advice laid down in the gcc manual, make >sure the case "..." operator has spaces on either side. > >Signed-off-by: Robert P. J. Day <[EMAIL PROTECTED]> > Acked-by: WANG Cong <[EMAIL PROTECTED]> - To

[PATCH] Add spaces on either side of case "..." operator.

2007-04-10 Thread Robert P. J. Day
Following the programming advice laid down in the gcc manual, make sure the case "..." operator has spaces on either side. Signed-off-by: Robert P. J. Day <[EMAIL PROTECTED]> --- According to: http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gcc/Case-Ranges.html#Case-Ranges: "Be careful: Write

[PATCH] Add spaces on either side of case ... operator.

2007-04-10 Thread Robert P. J. Day
Following the programming advice laid down in the gcc manual, make sure the case ... operator has spaces on either side. Signed-off-by: Robert P. J. Day [EMAIL PROTECTED] --- According to: http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gcc/Case-Ranges.html#Case-Ranges: Be careful: Write spaces

Re: [PATCH] Add spaces on either side of case ... operator.

2007-04-10 Thread WANG Cong
On Tue, Apr 10, 2007 at 07:23:35AM -0400, Robert P. J. Day wrote: Following the programming advice laid down in the gcc manual, make sure the case ... operator has spaces on either side. Signed-off-by: Robert P. J. Day [EMAIL PROTECTED] Acked-by: WANG Cong [EMAIL PROTECTED] - To unsubscribe

Re: [PATCH] Add spaces on either side of case ... operator.

2007-04-10 Thread Andrew Morton
On Tue, 10 Apr 2007 07:23:35 -0400 (EDT) Robert P. J. Day [EMAIL PROTECTED] wrote: Following the programming advice laid down in the gcc manual, make sure the case ... operator has spaces on either side. Signed-off-by: Robert P. J. Day [EMAIL PROTECTED] --- According to:

Re: [PATCH] Add spaces on either side of case ... operator.

2007-04-10 Thread Jeremy Fitzhardinge
Andrew Morton wrote: #define AUDIT_FIRST_USER_MSG1100/* Userspace messages mostly uninteresting to kernel */ #define AUDIT_USER_AVC 1107/* We filter this differently */ #define AUDIT_LAST_USER_MSG 1199 and CPP turns that into case 1100 ...1199: case 2100

Re: [PATCH] Add spaces on either side of case ... operator.

2007-04-10 Thread Alexey Dobriyan
On Tue, Apr 10, 2007 at 09:05:55AM -0700, Andrew Morton wrote: On Tue, 10 Apr 2007 07:23:35 -0400 (EDT) Robert P. J. Day [EMAIL PROTECTED] wrote: Following the programming advice laid down in the gcc manual, make sure the case ... operator has spaces on either side.

Re: [PATCH] Add spaces on either side of case ... operator.

2007-04-10 Thread Alexey Dobriyan
On Tue, Apr 10, 2007 at 10:47:21AM -0700, Jeremy Fitzhardinge wrote: Andrew Morton wrote: #define AUDIT_FIRST_USER_MSG1100/* Userspace messages mostly uninteresting to kernel */ #define AUDIT_USER_AVC 1107/* We filter this differently */ #define AUDIT_LAST_USER_MSG