diff options
author | Alex AUVOLAT <alexis211@gmail.com> | 2013-06-09 14:35:40 +0200 |
---|---|---|
committer | Alex AUVOLAT <alexis211@gmail.com> | 2013-06-09 14:35:40 +0200 |
commit | 9c74cb8c5bb5661d7f71f43b88816e70cc9fc022 (patch) | |
tree | 77a893ff826dcb14e9b8768c23e4970033e934ea /src/user/app/yosh | |
parent | 4d65fcb9a8b6c7c6fd5a3390c46a96d11b6a80d4 (diff) | |
download | TCE-9c74cb8c5bb5661d7f71f43b88816e70cc9fc022.tar.gz TCE-9c74cb8c5bb5661d7f71f43b88816e70cc9fc022.zip |
Many bug corrections.
Diffstat (limited to 'src/user/app/yosh')
-rw-r--r-- | src/user/app/yosh/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user/app/yosh/main.c b/src/user/app/yosh/main.c index 7c9b875..f7ee7e7 100644 --- a/src/user/app/yosh/main.c +++ b/src/user/app/yosh/main.c @@ -265,7 +265,7 @@ int main(int argc, char **sh_args) { } first_arg++; - int pid = run(c, (const char**)first_arg, vt_fd); + int pid = run(c, first_arg, vt_fd); if (pid <= 0) { if (pid == E_NOT_FOUND) { printf("Error: no such file %s\n", c); |