mirror of
https://git.proxmox.com/git/mirror_corosync
synced 2025-07-27 09:22:03 +00:00
Remove unchecked coverity error
Signed-off-by: Steven Dake <sdake@redhat.com> Reviewed-by: Angus Salkeld <asalked@redhat.com>
This commit is contained in:
parent
d901096ed3
commit
7d8400c34d
@ -372,7 +372,11 @@ _cs_quorum_init(void)
|
||||
quorum_fd_get(quorum_handle, &fd);
|
||||
qb_loop_poll_add(main_loop, QB_LOOP_MED, fd, POLLIN|POLLNVAL, NULL,
|
||||
_cs_quorum_dispatch);
|
||||
quorum_trackstart(quorum_handle, CS_TRACK_CHANGES);
|
||||
rc = quorum_trackstart(quorum_handle, CS_TRACK_CHANGES);
|
||||
if (rc != CS_OK) {
|
||||
qb_log(LOG_ERR, "Could not start tracking");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user