lib: confd: fix non-void return-type warning

Signed-off-by: Ruslan Babayev <ruslan@babayev.com>
This commit is contained in:
Ruslan Babayev 2021-10-11 20:16:21 -07:00
parent 722e430fd5
commit 7f88892d96

View File

@ -1194,6 +1194,8 @@ static int frr_confd_dp_ctl_read(struct thread *thread)
thread_add_read(master, frr_confd_dp_ctl_read, dctx, fd, &t_dp_ctl);
frr_confd_dp_read(dctx, fd);
return 0;
}
static int frr_confd_dp_worker_read(struct thread *thread)
@ -1204,6 +1206,8 @@ static int frr_confd_dp_worker_read(struct thread *thread)
thread_add_read(master, frr_confd_dp_worker_read, dctx, fd, &t_dp_worker);
frr_confd_dp_read(dctx, fd);
return 0;
}
static int frr_confd_subscribe_state(const struct lysc_node *snode, void *arg)