diff options
author | Michael Grunder <michael.grunder@gmail.com> | 2022-08-29 11:30:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-29 11:30:36 -0700 |
commit | 810cc6104c082cae0b42b52158fc52c3810228d8 (patch) | |
tree | b7f716a922c0679e566bef9adf4112ad3d6d2ee9 | |
parent | df8b74d69e827d715ddf2281f0c0bcbd320b6816 (diff) | |
parent | c6657ef65bacc989a5ae1462062d41547fa84765 (diff) |
Merge pull request #905 from sundb/master
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) \ |