diff options
author | rsc <rsc> | 2007-08-08 09:30:48 +0000 |
---|---|---|
committer | rsc <rsc> | 2007-08-08 09:30:48 +0000 |
commit | 115e177400d50838986840ff382ee644f291216b (patch) | |
tree | 371cbb6d02ee63ddd125127a7c2c50563c8b88b0 /usertests.c | |
parent | d80b06a1e0232f4c5e9b9c8ff635e4022e13667c (diff) | |
download | xv6-labs-115e177400d50838986840ff382ee644f291216b.tar.gz xv6-labs-115e177400d50838986840ff382ee644f291216b.tar.bz2 xv6-labs-115e177400d50838986840ff382ee644f291216b.zip |
standardize on not using unsigned keyword
Diffstat (limited to 'usertests.c')
-rw-r--r-- | usertests.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usertests.c b/usertests.c index 16be8b0..beae189 100644 --- a/usertests.c +++ b/usertests.c @@ -654,7 +654,7 @@ concreate() int i, pid, n, fd; char fa[40]; struct { - unsigned short inum; + ushort inum; char name[14]; } de; |