Remove superfluous trailing semicolons
Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Elijah Newren committed
Sep 5, 2018 at 10:03 UTC
c3b9bc94b9bee431323856fe2c373312c60969d7
3 files changed
+3
-3
builtin/receive-pack.c
+1
-1
@@ -464,7 +464,7 @@ static char *prepare_push_cert_nonce(const char *path, timestamp_t stamp)
464
unsigned char sha1[GIT_SHA1_RAWSZ];
465
466
strbuf_addf(&buf, "%s:%"PRItime, path, stamp);
467
- hmac_sha1(sha1, buf.buf, buf.len, cert_nonce_seed, strlen(cert_nonce_seed));;
467
+ hmac_sha1(sha1, buf.buf, buf.len, cert_nonce_seed, strlen(cert_nonce_seed));
468
strbuf_release(&buf);
469
470
/* RFC 2104 5. HMAC-SHA1-80 */
merge-recursive.c
+1
-1
@@ -2213,7 +2213,7 @@ static struct dir_rename_entry *check_dir_renamed(const char *path,
2213
{
2214
char *temp = xstrdup(path);
2215
char *end;
2216
- struct dir_rename_entry *entry = NULL;;
2216
+ struct dir_rename_entry *entry = NULL;
2217
2218
while ((end = strrchr(temp, '/'))) {
2219
*end = '\0';
remote-curl.c
+1
-1
@@ -178,7 +178,7 @@ static int set_option(const char *name, const char *value)
178
options.no_dependents = 1;
179
return 0;
180
} else if (!strcmp(name, "filter")) {
181
- options.filter = xstrdup(value);;
181
+ options.filter = xstrdup(value);
182
return 0;
183
} else {
184
return 1 /* unsupported */;