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

Commit 312f9c2

Browse files
committed
Removed non-c99 conformant code
compiled with 'gcc -std=c99 -pedantic -Wall -Werror' note: tests/tests.c non-conformant
1 parent 057e2a1 commit 312f9c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

events.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ int event_post(equeue_t *q, void (*cb)(void*), void *p) {
284284
}
285285

286286
void event_cancel(equeue_t *q, int id) {
287-
return equeue_cancel(q, id);
287+
equeue_cancel(q, id);
288288
}
289289

290290
// simple callbacks

0 commit comments

Comments
 (0)