Skip to content

Commit

Permalink
Fixes travis build error
Browse files Browse the repository at this point in the history
  • Loading branch information
davidvossel committed Jul 19, 2013
1 parent 1dbbeb8 commit 40e163a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ipcs.c
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ qb_ipcs_event_send(struct qb_ipcs_connection * c, const void *data, size_t size)
struct qb_ipc_one_way *ow = _event_sock_one_way_get(c);

if (c->outstanding_notifiers > 0) {
resend_event_notifications(c);
resn = resend_event_notifications(c);
}
if (ow) {
resn = qb_ipc_us_ready(ow, &c->setup, 0, POLLOUT);
Expand Down Expand Up @@ -459,7 +459,7 @@ qb_ipcs_event_sendv(struct qb_ipcs_connection * c,
struct qb_ipc_one_way *ow = _event_sock_one_way_get(c);

if (c->outstanding_notifiers > 0) {
resend_event_notifications(c);
resn = resend_event_notifications(c);
}
if (ow) {
resn = qb_ipc_us_ready(ow, &c->setup, 0, POLLOUT);
Expand Down

0 comments on commit 40e163a

Please sign in to comment.