Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d15ca320 authored by David Howells's avatar David Howells Committed by Linus Torvalds
Browse files

Fix the declaration of sys_execve() in asm-generic/syscalls.h



Fix the declaration of sys_execve() in asm-generic/syscalls.h to have
various consts applied to its pointers.

Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 145c3ae4
Loading
Loading
Loading
Loading
+4 −2
Original line number Original line Diff line number Diff line
@@ -23,8 +23,10 @@ asmlinkage long sys_vfork(struct pt_regs *regs);
#endif
#endif


#ifndef sys_execve
#ifndef sys_execve
asmlinkage long sys_execve(char __user *filename, char __user * __user *argv,
asmlinkage long sys_execve(const char __user *filename,
			char __user * __user *envp, struct pt_regs *regs);
			   const char __user *const __user *argv,
			   const char __user *const __user *envp,
			   struct pt_regs *regs);
#endif
#endif


#ifndef sys_mmap2
#ifndef sys_mmap2