remove redundant Semicolon

This commit is contained in:
hwware 2020-03-23 01:07:46 -04:00 committed by antirez
parent c7524a7e44
commit 81e8686cc7

View File

@ -271,7 +271,7 @@ void trackingInvalidateKey(robj *keyobj) {
trackingRememberKeyToBroadcast(sdskey,sdslen(sdskey));
rax *ids = raxFind(TrackingTable,(unsigned char*)sdskey,sdslen(sdskey));
if (ids == raxNotFound) return;;
if (ids == raxNotFound) return;
raxIterator ri;
raxStart(&ri,ids);