diff options
author | Richard Weinberger <richard@nod.at> | 2010-09-22 13:05:07 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-09-22 17:22:39 -0700 |
commit | cb1dcc0ff4b57873210100fc9d70defa81af43d4 (patch) | |
tree | e3ac8e05ce761fa1c468f1bd4fc2538b11ba3edb /arch/um/kernel/internal.h | |
parent | 1c2499ae87f828eabddf6483b0dfc11da1100c07 (diff) | |
download | linux-cb1dcc0ff4b57873210100fc9d70defa81af43d4.tar.gz linux-cb1dcc0ff4b57873210100fc9d70defa81af43d4.tar.bz2 linux-cb1dcc0ff4b57873210100fc9d70defa81af43d4.zip |
uml: fix compile warning
This fixes:
incompatible pointer type: => 89
arch/um/kernel/exec.c: warning: passing argument 2 of 'execve1' from
incompatible pointer type: => 69, 85
arch/um/kernel/exec.c: warning: passing argument 3 of 'execve1' from
incompatible pointer type: => 69, 85
which was introduced by d7627467b7a8d ("Make do_execve() take a const
filename pointer")
Signed-off-by: Richard Weinberger <richard@nod.at>
Cc: David Howells <dhowells@redhat.com>
Cc: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/kernel/internal.h')
-rw-r--r-- | arch/um/kernel/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/kernel/internal.h b/arch/um/kernel/internal.h index 1303a105fe91..5bf97db24a04 100644 --- a/arch/um/kernel/internal.h +++ b/arch/um/kernel/internal.h @@ -1 +1 @@ -extern long um_execve(const char *file, char __user *__user *argv, char __user *__user *env); +extern long um_execve(const char *file, const char __user *const __user *argv, const char __user *const __user *env); |