summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrans Kaashoek <[email protected]>2016-09-25 08:27:26 -0400
committerFrans Kaashoek <[email protected]>2016-09-25 08:27:26 -0400
commit0df5f11baef529f32d81bb1b1580264067477a5e (patch)
tree620803e8a025aff70f1541cb0b11edce475c90fd
parent7ddba7a636d121a7f4ad8d6be29a0b6ce40093ec (diff)
downloadxv6-labs-0df5f11baef529f32d81bb1b1580264067477a5e.tar.gz
xv6-labs-0df5f11baef529f32d81bb1b1580264067477a5e.tar.bz2
xv6-labs-0df5f11baef529f32d81bb1b1580264067477a5e.zip
Typo (Thanks to Austin Liew)
-rw-r--r--syscall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/syscall.c b/syscall.c
index 5d3be9d..a84a921 100644
--- a/syscall.c
+++ b/syscall.c
@@ -49,7 +49,7 @@ argint(int n, int *ip)
}
// Fetch the nth word-sized system call argument as a pointer
-// to a block of memory of size n bytes. Check that the pointer
+// to a block of memory of size bytes. Check that the pointer
// lies within the process address space.
int
argptr(int n, char **pp, int size)