diff options
author | Cordelia <cordsam@linux.vnet.ibm.com> | 2008-08-18 09:45:51 -0700 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2008-09-01 23:06:45 -0400 |
commit | c4bacefb7aaf49da11a695f29d85d40909f17693 (patch) | |
tree | f79955a37bab3ebe9942cba292ae560fb281c8bf /kernel/auditsc.c | |
parent | bef69ea0dcce574a425feb0a5aa4c63dd108b9a6 (diff) |
[PATCH] audit: Moved variable declaration to beginning of function
got rid of compilation warning:
ISO C90 forbids mixed declarations and code
Signed-off-by: Cordelia Sam <cordesam@gmail.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'kernel/auditsc.c')
-rw-r--r-- | kernel/auditsc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/auditsc.c b/kernel/auditsc.c index 972f8e61d36a..59cedfb040e7 100644 --- a/kernel/auditsc.c +++ b/kernel/auditsc.c @@ -243,10 +243,11 @@ 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) && |