mirror of
https://github.com/apache/nuttx.git
synced 2026-05-23 23:28:29 +08:00
libc: Fix typo error in execle
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
committed by
Petro Karashchenko
parent
49eb2bd415
commit
69b5799b74
@@ -170,9 +170,9 @@ int execle(FAR const char *path, FAR const char *arg0, ...)
|
||||
|
||||
va_end(ap);
|
||||
|
||||
/* Then let execv() do the real work */
|
||||
/* Then let execve() do the real work */
|
||||
|
||||
ret = execv(path, argv, envp);
|
||||
ret = execve(path, argv, envp);
|
||||
|
||||
/* Free the allocated argv[] list */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user