summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorkris <kris@FreeBSD.org>2005-11-24 00:53:14 +0000
committerkris <kris@FreeBSD.org>2005-11-24 00:53:14 +0000
commit0dcc27d29ef2ba8b1858011048d970e62fb0701b (patch)
treee9612cf487af346ec3482806d92b9f7b4c078fc6 /sys
parent4808c023d9ae1f822fe4a4c8401024ddc8a91bcb (diff)
downloadFreeBSD-src-0dcc27d29ef2ba8b1858011048d970e62fb0701b.zip
FreeBSD-src-0dcc27d29ef2ba8b1858011048d970e62fb0701b.tar.gz
Correct division by zero error in comment.
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/bio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/bio.h b/sys/sys/bio.h
index 8dcae46..fa17561 100644
--- a/sys/sys/bio.h
+++ b/sys/sys/bio.h
@@ -59,7 +59,7 @@ struct bio {
long bio_bcount; /* Valid bytes in buffer. */
caddr_t bio_data; /* Memory, superblocks, indirect etc. */
int bio_error; /* Errno for BIO_ERROR. */
- long bio_resid; /* Remaining I/0 in bytes. */
+ long bio_resid; /* Remaining I/O in bytes. */
void (*bio_done)(struct bio *);
void *bio_driver1; /* Private use by the provider. */
void *bio_driver2; /* Private use by the provider. */
OpenPOWER on IntegriCloud