Cleanup double semicolons

Closes #1161
This commit is contained in:
Matt Stancliff
2014-08-01 15:42:50 -04:00
committed by antirez
parent 987127c6e7
commit 4b6e73a75c
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ void queueMultiCommand(redisClient *c) {
void discardTransaction(redisClient *c) {
freeClientMultiState(c);
initClientMultiState(c);
c->flags &= ~(REDIS_MULTI|REDIS_DIRTY_CAS|REDIS_DIRTY_EXEC);;
c->flags &= ~(REDIS_MULTI|REDIS_DIRTY_CAS|REDIS_DIRTY_EXEC);
unwatchAllKeys(c);
}