summaryrefslogtreecommitdiff
path: root/src/quicklist.c
diff options
context:
space:
mode:
authorsundb <sundbcn@gmail.com>2020-12-22 14:57:45 +0800
committerGitHub <noreply@github.com>2020-12-21 22:57:45 -0800
commit4bc14da2b3330c7ce8b9366ea3880eba65ba2ff9 (patch)
tree23a9e69ba3f179d6a559dc352b787d39a3a745f9 /src/quicklist.c
parent4c13945c370b98b69886c6bcd1e71d4934344cae (diff)
downloadredis-4bc14da2b3330c7ce8b9366ea3880eba65ba2ff9.tar.gz
Fix some redundancy use of semicolon in do-while macros (#8221)
* Fix some redundancy use of semicolon in do-while macros
Diffstat (limited to 'src/quicklist.c')
-rw-r--r--src/quicklist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quicklist.c b/src/quicklist.c
index 5ed9b6a5d..4dc3576ae 100644
--- a/src/quicklist.c
+++ b/src/quicklist.c
@@ -69,7 +69,7 @@ static const size_t optimization_level[] = {4096, 8192, 16384, 32768, 65536};
printf("%s:%s:%d:\t", __FILE__, __FUNCTION__, __LINE__); \
printf(__VA_ARGS__); \
printf("\n"); \
- } while (0);
+ } while (0)
#endif
/* Bookmarks forward declarations */