Re: [PATCH] tcp_probe: __attribute__ string location

2007-06-05 Thread Ian McDonald
On 6/6/07, David Miller <[EMAIL PROTECTED]> wrote: From: Randy Dunlap <[EMAIL PROTECTED]> Date: Tue, 5 Jun 2007 18:01:41 -0700 > From: Randy Dunlap <[EMAIL PROTECTED]> > > gcc doesn't like the location of the __attribute__ string here: > net/ipv4/tcp_probe.c:83: warning: empty declaration > > so

Re: [PATCH] tcp_probe: __attribute__ string location

2007-06-05 Thread David Miller
From: Randy Dunlap <[EMAIL PROTECTED]> Date: Tue, 5 Jun 2007 18:01:41 -0700 > From: Randy Dunlap <[EMAIL PROTECTED]> > > gcc doesn't like the location of the __attribute__ string here: > net/ipv4/tcp_probe.c:83: warning: empty declaration > > so move it to before the function and all is well. >

[PATCH] tcp_probe: __attribute__ string location

2007-06-05 Thread Randy Dunlap
From: Randy Dunlap <[EMAIL PROTECTED]> gcc doesn't like the location of the __attribute__ string here: net/ipv4/tcp_probe.c:83: warning: empty declaration so move it to before the function and all is well. Signed-off-by: Randy Dunlap <[EMAIL PROTECTED]> --- net/ipv4/tcp_probe.c |3 ++- 1 fi