From: Vincent Bernat Date: Mon, 17 Aug 2015 12:22:06 +0000 (+0200) Subject: interfaces: fix incomplete declaration of interfaces_cleanup X-Git-Tag: 0.8.0~91 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e8c8d15b113d401f851acdd16c0299dc1beb2f8b;p=thirdparty%2Flldpd.git interfaces: fix incomplete declaration of interfaces_cleanup For BSD and Solaris, the declaration was incomplete. --- diff --git a/src/daemon/interfaces-bsd.c b/src/daemon/interfaces-bsd.c index 4084d53b..f1ce36f4 100644 --- a/src/daemon/interfaces-bsd.c +++ b/src/daemon/interfaces-bsd.c @@ -687,6 +687,6 @@ end: } void -interfaces_cleanup(struct lldpd *) +interfaces_cleanup(struct lldpd *cfg) { } diff --git a/src/daemon/interfaces-solaris.c b/src/daemon/interfaces-solaris.c index f6f67639..cdb5d763 100644 --- a/src/daemon/interfaces-solaris.c +++ b/src/daemon/interfaces-solaris.c @@ -186,6 +186,6 @@ end: } void -interfaces_cleanup(struct lldpd *) +interfaces_cleanup(struct lldpd *cfg) { }