From 6d51db70ae4f7c013dd9709e7ccb6e6857456970 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Wed, 13 Feb 2008 19:35:12 -0200 Subject: [PATCH] Bugfix: ev_set_syserr_cb callback don't return void*. Signed-off-by: Leandro Lucarella --- ev/c.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.43.0