Skip to content
This repository has been archived by the owner on Aug 19, 2021. It is now read-only.

Commit

Permalink
Merge pull request #3 from nvlsianpu/patch-1
Browse files Browse the repository at this point in the history
remove unvwanted return statment
  • Loading branch information
geky authored Jul 14, 2016
2 parents 59d08c4 + 596420d commit ff8ad3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion events-c/events.c
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ int event_post(equeue_t *q, void (*cb)(void*), void *p) {
}

void event_cancel(equeue_t *q, int id) {
return equeue_cancel(q, id);
equeue_cancel(q, id);
}

// simple callbacks
Expand Down

0 comments on commit ff8ad3b

Please sign in to comment.