From a97a1ed57051fc0c4e2f2f803a4d6a734689cbdc Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Wed, 12 Aug 2020 10:03:53 -0400 Subject: remove __syscall_lookup() --- src/unistd/execve.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/unistd/execve.c') diff --git a/src/unistd/execve.c b/src/unistd/execve.c index 96539df2..81e39b93 100644 --- a/src/unistd/execve.c +++ b/src/unistd/execve.c @@ -5,7 +5,7 @@ int execve(const char *path, char *const argv[], char *const envp[]) { - SYSCALL_NUMBER(scno, "execve", -1); + SYSCALL_NUMBER(scno, execve, -1); errno = -__syscall(scno, path, argv, envp); return -1; } -- cgit v1.2.1