Re: [PATCH] audit: removing unused variable

2015-10-29 Thread Paul Moore
On Wed, Oct 28, 2015 at 6:12 PM, Joe Perches wrote: > On Wed, 2015-10-28 at 16:35 -0400, Paul Moore wrote: >> On Wednesday, October 28, 2015 09:40:34 AM Saurabh Sengar wrote: >> > variavle rc in not required as it is just used for unchanged for return, >> > and return is always 0 in the function.

Re: [PATCH] audit: removing unused variable

2015-10-28 Thread Joe Perches
On Wed, 2015-10-28 at 16:35 -0400, Paul Moore wrote: > On Wednesday, October 28, 2015 09:40:34 AM Saurabh Sengar wrote: > > variavle rc in not required as it is just used for unchanged for return, > > and return is always 0 in the function. [] > Thanks, applied with some spelling corrections to the

Re: [PATCH] audit: removing unused variable

2015-10-28 Thread Paul Moore
On Wednesday, October 28, 2015 09:40:34 AM Saurabh Sengar wrote: > variavle rc in not required as it is just used for unchanged for return, > and return is always 0 in the function. > > Signed-off-by: Saurabh Sengar > --- > kernel/audit.c | 7 +++ > 1 file changed, 3 insertions(+), 4 deletio

[PATCH] audit: removing unused variable

2015-10-27 Thread Saurabh Sengar
variavle rc in not required as it is just used for unchanged for return, and return is always 0 in the function. Signed-off-by: Saurabh Sengar --- kernel/audit.c | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/kernel/audit.c b/kernel/audit.c index 662c007..409482f 1006