diff options
Diffstat (limited to 'user/usertests.c')
-rw-r--r-- | user/usertests.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user/usertests.c b/user/usertests.c index 7d53099..38c81f1 100644 --- a/user/usertests.c +++ b/user/usertests.c @@ -1372,7 +1372,7 @@ linktest(char *s) unlink("lf2"); if(link("lf2", "lf1") >= 0){ - printf("%s: link non-existant succeeded! oops\n", s); + printf("%s: link non-existent succeeded! oops\n", s); exit(1); } @@ -2366,7 +2366,7 @@ validatetest(char *s) } } -// does unintialized data start out zero? +// does uninitialized data start out zero? char uninit[10000]; void bsstest(char *s) |