summaryrefslogtreecommitdiff
path: root/syscall.c
diff options
context:
space:
mode:
Diffstat (limited to 'syscall.c')
-rw-r--r--syscall.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/syscall.c b/syscall.c
index 5a7a60d..2918bb0 100644
--- a/syscall.c
+++ b/syscall.c
@@ -113,7 +113,6 @@ sys_pipe(void)
return 0;
oops:
- cprintf("sys_pipe failed\n");
if(rfd)
fd_close(rfd);
if(wfd)
@@ -602,14 +601,12 @@ sys_exec(void)
return 0;
bad:
- cprintf("exec failed early\n");
if(mem)
kfree(mem, sz);
iput(ip);
return -1;
bad2:
- cprintf("exec failed late\n");
iput(ip);
proc_exit();
return 0;