diff options
author | sundb <sundbcn@gmail.com> | 2020-12-24 11:09:10 +0800 |
---|---|---|
committer | sundb <sundbcn@gmail.com> | 2020-12-24 11:09:10 +0800 |
commit | fd033e983acb69f7814255e7836f255411e17007 (patch) | |
tree | 4b345a36ffd6df30a7a6a1994d7d6e372c38b80d | |
parent | 297ecbecb71616977ab0bb9b7387d8fa19a5a54f (diff) |
Remove semicolon after do-while in _EL_CLEANUP
-rw-r--r-- | async_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
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) \ |