From fd033e983acb69f7814255e7836f255411e17007 Mon Sep 17 00:00:00 2001 From: sundb Date: Thu, 24 Dec 2020 11:09:10 +0800 Subject: [PATCH] Remove semicolon after do-while in _EL_CLEANUP --- async_private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/async_private.h b/async_private.h index b9d23ff..ea0558d 100644 --- a/async_private.h +++ b/async_private.h @@ -51,7 +51,7 @@ #define _EL_CLEANUP(ctx) do { \ if ((ctx)->ev.cleanup) (ctx)->ev.cleanup((ctx)->ev.data); \ ctx->ev.cleanup = NULL; \ - } while(0); + } while(0) static inline void refreshTimeout(redisAsyncContext *ctx) { #define REDIS_TIMER_ISSET(tvp) \