summaryrefslogtreecommitdiff
path: root/sys/net
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2023-01-04 03:47:11 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2023-01-04 03:47:11 +0000
commitecbeeca4f899740be3ce13697b905dbe05b86d1b (patch)
tree53df4268cca575d5b728b6704e3110f98ea0fe66 /sys/net
parent37ab7157f52597ac3ac91bc6bb852f0efb06cd47 (diff)
fix a comment, no functional change.
Diffstat (limited to 'sys/net')
-rw-r--r--sys/net/ifq.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/ifq.h b/sys/net/ifq.h
index 78180224932..18c4dc555de 100644
--- a/sys/net/ifq.h
+++ b/sys/net/ifq.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ifq.h,v 1.35 2022/11/22 03:40:53 dlg Exp $ */
+/* $OpenBSD: ifq.h,v 1.36 2023/01/04 03:47:10 dlg Exp $ */
/*
* Copyright (c) 2015 David Gwynne <dlg@openbsd.org>
@@ -283,7 +283,7 @@ struct ifiqueue {
* if_attach(ifp);
*
* if_attach_queues(ifp, DRV_NUM_TX_RINGS);
- * for (i = ; i < DRV_NUM_TX_RINGS; i++) {
+ * for (i = 0; i < DRV_NUM_TX_RINGS; i++) {
* struct ifqueue *ifq = ifp->if_ifqs[i];
* struct drv_tx_ring *ring = &sc->sc_tx_rings[i];
*