diff options
author | Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com> | 2008-01-30 13:32:54 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 13:32:54 +0100 |
commit | 7375931a27bbe687e03ae3c28178920b0c66a87d (patch) | |
tree | 45da82784b739ab7255d172a144869ae038868ee /arch/x86/ia32 | |
parent | bac4894dfa9c75c297b905e2ea88caaa5768f1e2 (diff) |
x86: coding style fixes in arch/x86/ia32/audit.c
Fix one error reported by checkpatch,
it now reports:
total: 0 errors, 0 warnings, 42 lines checked
Signed-off-by: Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/ia32')
-rw-r--r-- | arch/x86/ia32/audit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/ia32/audit.c b/arch/x86/ia32/audit.c index 91b7b5922dfa..5d7b381da692 100644 --- a/arch/x86/ia32/audit.c +++ b/arch/x86/ia32/audit.c @@ -27,7 +27,7 @@ unsigned ia32_signal_class[] = { int ia32_classify_syscall(unsigned syscall) { - switch(syscall) { + switch (syscall) { case __NR_open: return 2; case __NR_openat: |