[PATCH] fix warning in audit_match_perm

From: Benny Halevy
Date: Wed Aug 20 2008 - 07:18:29 EST



kernel/auditsc.c: In function âaudit_match_permâ:
kernel/auditsc.c:249: warning: ISO C90 forbids mixed declarations and code

This was introduced in commit
1a61c88defcd611bd148d6c960b498e1b8bbbe00

Signed-off-by: Benny Halevy <bhalevy@xxxxxxxxxxx>
---
kernel/auditsc.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/kernel/auditsc.c b/kernel/auditsc.c
index 972f8e6..e72b161 100644
--- a/kernel/auditsc.c
+++ b/kernel/auditsc.c
@@ -243,10 +243,12 @@ static inline int open_arg(int flags, int mask)

static int audit_match_perm(struct audit_context *ctx, int mask)
{
+ unsigned n;
+
if (unlikely(!ctx))
return 0;

- unsigned n = ctx->major;
+ n = ctx->major;
switch (audit_classify_syscall(ctx->arch, n)) {
case 0: /* native */
if ((mask & AUDIT_PERM_WRITE) &&
--
1.6.0

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/