diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2013-04-10 01:35:56 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2013-04-10 01:35:56 +0000 |
commit | ae8b0483dbf4c7520407bab46a41e05336e0f899 (patch) | |
tree | ca95dfbc4b96f97d5c8b54522ab51efb2fff099d /sys/net | |
parent | 544774105036bd144223e6ee478a376c9f0f3c3b (diff) |
Fix various glitches in queue macro usage.
ok millert@
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if_pppx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_pppx.c b/sys/net/if_pppx.c index 29ab677dd71..836a6b2b8f9 100644 --- a/sys/net/if_pppx.c +++ b/sys/net/if_pppx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_pppx.c,v 1.17 2013/03/28 16:45:16 tedu Exp $ */ +/* $OpenBSD: if_pppx.c,v 1.18 2013/04/10 01:35:55 guenther Exp $ */ /* * Copyright (c) 2010 Claudio Jeker <claudio@openbsd.org> @@ -130,7 +130,7 @@ struct pppx_dev { }; struct rwlock pppx_devs_lk = RWLOCK_INITIALIZER("pppxdevs"); -LIST_HEAD(, pppx_dev) pppx_devs = LIST_HEAD_INITIALIZER(&pppx_devs); +LIST_HEAD(, pppx_dev) pppx_devs = LIST_HEAD_INITIALIZER(pppx_devs); struct pool *pppx_if_pl; struct pppx_dev *pppx_dev_lookup(int); |