Unverified Commit 2f454e5a authored by hujie's avatar hujie Committed by GitHub
Browse files

remove duplicate semicolon (#7438)

parent f2da3efc
...@@ -1058,7 +1058,7 @@ struct rewriteConfigState *rewriteConfigReadOldFile(char *path) { ...@@ -1058,7 +1058,7 @@ struct rewriteConfigState *rewriteConfigReadOldFile(char *path) {
char *p = strstr(argv[0],"slave"); char *p = strstr(argv[0],"slave");
if (p) { if (p) {
sds alt = sdsempty(); sds alt = sdsempty();
alt = sdscatlen(alt,argv[0],p-argv[0]);; alt = sdscatlen(alt,argv[0],p-argv[0]);
alt = sdscatlen(alt,"replica",7); alt = sdscatlen(alt,"replica",7);
alt = sdscatlen(alt,p+5,strlen(p+5)); alt = sdscatlen(alt,p+5,strlen(p+5));
sdsfree(argv[0]); sdsfree(argv[0]);
......
...@@ -1298,7 +1298,7 @@ NULL ...@@ -1298,7 +1298,7 @@ NULL
addReply(c,shared.syntaxerr); addReply(c,shared.syntaxerr);
return; return;
} }
if (samples == 0) samples = LLONG_MAX;; if (samples == 0) samples = LLONG_MAX;
j++; /* skip option argument. */ j++; /* skip option argument. */
} else { } else {
addReply(c,shared.syntaxerr); addReply(c,shared.syntaxerr);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment