summaryrefslogtreecommitdiff
path: root/src/user/lib/libc/tce
diff options
context:
space:
mode:
authorAlex AUVOLAT <alexis211@gmail.com>2013-06-09 14:35:40 +0200
committerAlex AUVOLAT <alexis211@gmail.com>2013-06-09 14:35:40 +0200
commit9c74cb8c5bb5661d7f71f43b88816e70cc9fc022 (patch)
tree77a893ff826dcb14e9b8768c23e4970033e934ea /src/user/lib/libc/tce
parent4d65fcb9a8b6c7c6fd5a3390c46a96d11b6a80d4 (diff)
downloadTCE-9c74cb8c5bb5661d7f71f43b88816e70cc9fc022.tar.gz
TCE-9c74cb8c5bb5661d7f71f43b88816e70cc9fc022.zip
Many bug corrections.
Diffstat (limited to 'src/user/lib/libc/tce')
-rw-r--r--src/user/lib/libc/tce/syscall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user/lib/libc/tce/syscall.c b/src/user/lib/libc/tce/syscall.c
index f4f1333..780b573 100644
--- a/src/user/lib/libc/tce/syscall.c
+++ b/src/user/lib/libc/tce/syscall.c
@@ -75,7 +75,7 @@ void brk(void* ptr) {
// ********** proc
-int run(const char* filename, const char** args, int zero_fd) {
+int run(const char* filename, char** args, int zero_fd) {
return call(SC_RUN, (unsigned)filename, (unsigned)args, (unsigned)zero_fd, 0, 0);
}