diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2015-11-22 23:56:11 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2015-11-22 23:56:11 +0000 |
commit | 3a3036f201c577b716431ad68c65d9f095755f6a (patch) | |
tree | 2ee8beca3047204d66915ae02b00ea8819e6d56d /sys/dev | |
parent | 79e2cd10fe14e97ae0e46fba19bf99026d77338c (diff) |
too many arguments to function 'ifq_deq_begin'
found by deraadt@
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/usb/if_cdcef.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/if_cdcef.c b/sys/dev/usb/if_cdcef.c index 4f3c0a9e9d1..858ebbca91f 100644 --- a/sys/dev/usb/if_cdcef.c +++ b/sys/dev/usb/if_cdcef.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_cdcef.c,v 1.39 2015/11/20 03:35:23 dlg Exp $ */ +/* $OpenBSD: if_cdcef.c,v 1.40 2015/11/22 23:56:10 dlg Exp $ */ /* * Copyright (c) 2007 Dale Rahn <drahn@openbsd.org> @@ -277,7 +277,7 @@ cdcef_start(struct ifnet *ifp) if(ifp->if_flags & IFF_OACTIVE) return; - m_head = ifq_deq_begin(&ifp->if_snd, m_head); + m_head = ifq_deq_begin(&ifp->if_snd); if (m_head == NULL) { return; } |