Skip to content

Commit

Permalink
Cleanup double semicolons
Browse files Browse the repository at this point in the history
Closes #1161
  • Loading branch information
mattsta committed Aug 2, 2014
1 parent 4cb3991 commit 513d0fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/multi.c
Expand Up @@ -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);
}

Expand Down
2 changes: 1 addition & 1 deletion src/redis-check-dump.c
Expand Up @@ -614,7 +614,7 @@ void process(void) {
printf("RDB version >= 5 but no room for checksum.\n");
exit(1);
}
positions[0].size -= 8;;
positions[0].size -= 8;
}

level = 1;
Expand Down

0 comments on commit 513d0fc

Please sign in to comment.