diff options
Diffstat (limited to 'posix/execvpe.c')
-rw-r--r-- | posix/execvpe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/posix/execvpe.c b/posix/execvpe.c index d1415c1e1e..af78e4637d 100644 --- a/posix/execvpe.c +++ b/posix/execvpe.c @@ -59,7 +59,7 @@ maybe_script_execute (const char *file, char *const argv[], char *const envp[]) new_argv[0] = (char *) _PATH_BSHELL; new_argv[1] = (char *) file; if (argc > 1) - memcpy (new_argv + 2, argv + 1, argc * sizeof(char *)); + memcpy (new_argv + 2, argv + 1, argc * sizeof (char *)); else new_argv[2] = NULL; |