summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorASOU Masato <asou@cvs.openbsd.org>2023-11-24 00:15:43 +0000
committerASOU Masato <asou@cvs.openbsd.org>2023-11-24 00:15:43 +0000
commit107af09e9e8a13a6c550b3b8c8b22f849a14291a (patch)
treeb9fca6632aaf38864d332bd37953b903497a2526
parent4f592c123a8bb037be23d6d4204468b8edda3bcc (diff)
Fix comments longer than 80 column.
ok miod@
-rw-r--r--sys/kern/kern_physio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/kern_physio.c b/sys/kern/kern_physio.c
index b2d561c6afe..4cbe739f38d 100644
--- a/sys/kern/kern_physio.c
+++ b/sys/kern/kern_physio.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kern_physio.c,v 1.47 2020/02/20 16:26:01 krw Exp $ */
+/* $OpenBSD: kern_physio.c,v 1.48 2023/11/24 00:15:42 asou Exp $ */
/* $NetBSD: kern_physio.c,v 1.28 1997/05/19 10:43:28 pk Exp $ */
/*-
@@ -113,8 +113,8 @@ physio(void (*strategy)(struct buf *), dev_t dev, int flags,
/*
* Because iov_len is size_t (unsigned) but b_bcount is
* long (signed), an overflow is possible. Therefore
- * limit b_bcount to LONG_MAX before calling the provided
- * minphys.
+ * limit b_bcount to LONG_MAX before calling the
+ * provided minphys.
*/
if (iovp->iov_len > LONG_MAX)
bp->b_bcount = LONG_MAX;