[PATCH] um: Coding style fix in sys_execve()

From: Meredydd Luff
Date: Wed Aug 01 2012 - 18:24:18 EST


Submitting this as a separate patch per richard@xxxxxx's suggestion.

Signed-off-by: Meredydd Luff <meredydd@xxxxxxxxxxxxxxx>
---
arch/um/kernel/exec.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/arch/um/kernel/exec.c b/arch/um/kernel/exec.c
index 6cade93..e74ec80 100644
--- a/arch/um/kernel/exec.c
+++ b/arch/um/kernel/exec.c
@@ -80,7 +80,8 @@ long sys_execve(const char __user *file, const char __user *const __user *argv,

filename = getname(file);
error = PTR_ERR(filename);
- if (IS_ERR(filename)) goto out;
+ if (IS_ERR(filename))
+ goto out;
error = execve1(filename, argv, env);
putname(filename);
out:
--
1.7.4.1

--
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/