diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2005-04-01 20:02:28 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2005-04-01 20:02:28 +0000 |
commit | 72c38c8f94b1bd2943559e62e42ee35f685cd0ac (patch) | |
tree | e6e15b5dc2e91187a8395247b90a9ecc1100c018 | |
parent | 508d3f1b5ceefc9abb1196e5cd74c03c36676c56 (diff) |
size_t not int, bad niklas.
-rw-r--r-- | sys/dev/bio.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/bio.c b/sys/dev/bio.c index 6eb18e2129b..88dd92634de 100644 --- a/sys/dev/bio.c +++ b/sys/dev/bio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bio.c,v 1.3 2003/08/06 21:08:06 millert Exp $ */ +/* $OpenBSD: bio.c,v 1.4 2005/04/01 20:02:27 marco Exp $ */ /* * Copyright (c) 2002 Niklas Hallqvist. All rights reserved. @@ -89,7 +89,8 @@ bioioctl(dev, cmd, addr, flag, p) struct proc *p; { char name[16]; - int len, error; + size_t len; + int error; struct bio_locate *locate; struct bio_common *common; |