Skip to content

Commit fd033e9

Browse files
committedDec 24, 2020
Remove semicolon after do-while in _EL_CLEANUP
1 parent 297ecbe commit fd033e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎async_private.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
#define _EL_CLEANUP(ctx) do { \
5252
if ((ctx)->ev.cleanup) (ctx)->ev.cleanup((ctx)->ev.data); \
5353
ctx->ev.cleanup = NULL; \
54-
} while(0);
54+
} while(0)
5555

5656
static inline void refreshTimeout(redisAsyncContext *ctx) {
5757
#define REDIS_TIMER_ISSET(tvp) \

0 commit comments

Comments
 (0)
Please sign in to comment.