From: Leandro Lucarella Date: Wed, 13 Feb 2008 21:35:12 +0000 (-0200) Subject: Bugfix: ev_set_syserr_cb callback don't return void*. X-Git-Tag: 0.1~5 X-Git-Url: https://git.llucax.com/software/ev.d.git/commitdiff_plain/6d51db70ae4f7c013dd9709e7ccb6e6857456970 Bugfix: ev_set_syserr_cb callback don't return void*. Signed-off-by: Leandro Lucarella --- diff --git a/ev/c.d b/ev/c.d index 3efcb67..70f9532 100644 --- a/ev/c.d +++ b/ev/c.d @@ -261,7 +261,7 @@ void ev_set_allocator(void* function(void* ptr, int size)); // set the callback function to call on a // retryable syscall error // (such as failed select, poll, epoll_wait) -void ev_set_syserr_cb(void* function(char* msg)); +void ev_set_syserr_cb(void function(char* msg)); extern ev_loop_t* ev_default_loop_ptr;