From bfd388c026e6aeb5427df50347b59d62feb3072e Mon Sep 17 00:00:00 2001 From: antoine Date: Mon, 28 Dec 2009 22:56:30 +0000 Subject: (S)LIST_HEAD_INITIALIZER takes a (S)LIST_HEAD as an argument. Fix some wrong usages. Note: this does not affect generated binaries as this argument is not used. PR: 137213 Submitted by: Eygene Ryabinkin (initial version) MFC after: 1 month --- sbin/natd/natd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sbin/natd/natd.c') diff --git a/sbin/natd/natd.c b/sbin/natd/natd.c index 445077f..f6b3fdb 100644 --- a/sbin/natd/natd.c +++ b/sbin/natd/natd.c @@ -68,7 +68,7 @@ struct instance { int divertInOut; }; -static LIST_HEAD(, instance) root = LIST_HEAD_INITIALIZER(&root); +static LIST_HEAD(, instance) root = LIST_HEAD_INITIALIZER(root); struct libalias *mla; struct instance *mip; -- cgit v1.1