From 12f6e63d151995a4d930dd509ba9d5cd0ed212d4 Mon Sep 17 00:00:00 2001 From: Kris Kennaway Date: Thu, 24 Nov 2005 00:53:14 +0000 Subject: [PATCH] Correct division by zero error in comment. --- sys/sys/bio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/bio.h b/sys/sys/bio.h index 8dcae46de028..fa1756145b0c 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. */