summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrsc <rsc>2007-08-27 23:53:50 +0000
committerrsc <rsc>2007-08-27 23:53:50 +0000
commit773159fbeee3ae4a22ffba37d36bd1c997d32440 (patch)
treed1826dbd5d99bbdf4395cb6884c9b61f0ede904b
parent3a2310f7465ed92db7ce9ecfd619e8ac2011a789 (diff)
downloadxv6-labs-773159fbeee3ae4a22ffba37d36bd1c997d32440.tar.gz
xv6-labs-773159fbeee3ae4a22ffba37d36bd1c997d32440.tar.bz2
xv6-labs-773159fbeee3ae4a22ffba37d36bd1c997d32440.zip
make code match comment
-rw-r--r--syscall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/syscall.c b/syscall.c
index 695873f..2a037d1 100644
--- a/syscall.c
+++ b/syscall.c
@@ -40,7 +40,7 @@ fetchstr(struct proc *p, uint addr, char **pp)
return -1;
}
-// Fetch the argno'th 32-bit system call argument.
+// Fetch the nth 32-bit system call argument.
int
argint(int n, int *ip)
{