Skip to content

Commit

Permalink
Removed non-c99 conformant code
Browse files Browse the repository at this point in the history
compiled with 'gcc -std=c99 -pedantic -Wall -Werror'
note: tests/tests.c non-conformant
  • Loading branch information
geky committed Jul 11, 2016
1 parent 057e2a1 commit 312f9c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion events.c
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,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 312f9c2

Please sign in to comment.