From e8c8d15b113d401f851acdd16c0299dc1beb2f8b Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Mon, 17 Aug 2015 14:22:06 +0200 Subject: [PATCH] interfaces: fix incomplete declaration of interfaces_cleanup For BSD and Solaris, the declaration was incomplete. --- src/daemon/interfaces-bsd.c | 2 +- src/daemon/interfaces-solaris.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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) { } -- 2.39.5