From c7267235455f48e7ce4aa5cb1d0bc0cfe2b7ba09 Mon Sep 17 00:00:00 2001 From: Aureus Date: Mon, 1 Jun 2020 18:21:27 -0400 Subject: [PATCH] Use explicit pointer casting for c++ compatibility (#826) --- adapters/libev.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/adapters/libev.h b/adapters/libev.h index 7057dbd..e1e7bbd 100644 --- a/adapters/libev.h +++ b/adapters/libev.h @@ -121,12 +121,12 @@ static void redisLibevCleanup(void *privdata) { static void redisLibevTimeout(EV_P_ ev_timer *timer, int revents) { ((void)revents); - redisLibevEvents *e = timer->data; + redisLibevEvents *e = (redisLibevEvents*)timer->data; redisAsyncHandleTimeout(e->context); } static void redisLibevSetTimeout(void *privdata, struct timeval tv) { - redisLibevEvents *e = privdata; + redisLibevEvents *e = (redisLibevEvents*)privdata; struct ev_loop *loop = e->loop; ((void)loop);