diff options
Diffstat (limited to 'src/unistd/execve.c')
| -rw-r--r-- | src/unistd/execve.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
