xv6

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit d73dd097a529bc9d13f514ae6884c4d96a0fffa8
parent 0ca1c0407d3da826ad8415e3204e1c53e394e204
Author: Austin Clements <amdragon@mit.edu>
Date:   Fri, 30 Sep 2011 15:28:33 -0400

Fix compile error on newer gcc's

Diffstat:
Musertests.c | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/usertests.c b/usertests.c @@ -1514,10 +1514,9 @@ bsstest(void) void bigargtest(void) { - int pid, ppid, fd; + int pid, fd; unlink("bigarg-ok"); - ppid = getpid(); pid = fork(); if(pid == 0){ static char *args[MAXARG];