diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2017-01-22 04:48:24 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2017-01-22 04:48:24 +0000 |
commit | 87f4c43b84e631f71ea168f7ed39c502c21166bf (patch) | |
tree | f61a3ecc701846ef8bb91e0cb1fda93d007c5b4a | |
parent | e572bed04ff8c68993acdcea75d89ee186b2e763 (diff) |
white space fixes. no functional change.
-rw-r--r-- | sys/net/hfsc.c | 14 | ||||
-rw-r--r-- | sys/net/ifq.h | 6 |
2 files changed, 10 insertions, 10 deletions
diff --git a/sys/net/hfsc.c b/sys/net/hfsc.c index d63a7bee03b..447ca4f9cd0 100644 --- a/sys/net/hfsc.c +++ b/sys/net/hfsc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hfsc.c,v 1.33 2016/09/15 02:00:18 dlg Exp $ */ +/* $OpenBSD: hfsc.c,v 1.34 2017/01/22 04:48:23 dlg Exp $ */ /* * Copyright (c) 2012-2013 Henning Brauer <henning@openbsd.org> @@ -267,12 +267,12 @@ void hfsc_deq_commit(struct ifqueue *, struct mbuf *, void *); void hfsc_purge(struct ifqueue *, struct mbuf_list *); const struct ifq_ops hfsc_ops = { - hfsc_alloc, - hfsc_free, - hfsc_enq, - hfsc_deq_begin, - hfsc_deq_commit, - hfsc_purge, + hfsc_alloc, + hfsc_free, + hfsc_enq, + hfsc_deq_begin, + hfsc_deq_commit, + hfsc_purge, }; const struct ifq_ops * const ifq_hfsc_ops = &hfsc_ops; diff --git a/sys/net/ifq.h b/sys/net/ifq.h index cf53bc702b0..4dbef36090e 100644 --- a/sys/net/ifq.h +++ b/sys/net/ifq.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ifq.h,v 1.6 2017/01/20 03:48:03 dlg Exp $ */ +/* $OpenBSD: ifq.h,v 1.7 2017/01/22 04:48:23 dlg Exp $ */ /* * Copyright (c) 2015 David Gwynne <dlg@openbsd.org> @@ -311,10 +311,10 @@ struct ifq_ops { void *(*ifqop_alloc)(void *); void (*ifqop_free)(void *); int (*ifqop_enq)(struct ifqueue *, struct mbuf *); - struct mbuf *(*ifqop_deq_begin)(struct ifqueue *, void **); + struct mbuf *(*ifqop_deq_begin)(struct ifqueue *, void **); void (*ifqop_deq_commit)(struct ifqueue *, struct mbuf *, void *); - void (*ifqop_purge)(struct ifqueue *, + void (*ifqop_purge)(struct ifqueue *, struct mbuf_list *); }; |