- Fix warning for unused variable for compilation without systemd.

This commit is contained in:
W.C.A. Wijngaards 2019-08-14 16:08:19 +02:00
parent a90f173875
commit 8cb3656b3e
2 changed files with 3 additions and 0 deletions

View file

@ -575,7 +575,9 @@ void
daemon_fork(struct daemon* daemon)
{
int have_view_respip_cfg = 0;
#ifdef HAVE_SYSTEMD
int ret;
#endif
log_assert(daemon);
if(!(daemon->views = views_create()))

View file

@ -4,6 +4,7 @@
14 August 2019: Wouter
- Generate configlexer with newer flex.
- Fix warning for unused variable for compilation without systemd.
12 August 2019: George
- Introduce `-V` option to print the version number and build options.