Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElijah Newren <newren@gmail.com>2018-09-05 20:03:07 +0300
committerJunio C Hamano <gitster@pobox.com>2018-09-05 20:21:24 +0300
commitc3b9bc94b9bee431323856fe2c373312c60969d7 (patch)
treecb6907f9c9c2c5085df4522144f11d99809ec2c9 /builtin/receive-pack.c
parent53f9a3e157dbbc901a02ac2c73346d375e24978c (diff)
Remove superfluous trailing semicolons
Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/receive-pack.c')
-rw-r--r--builtin/receive-pack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/receive-pack.c b/builtin/receive-pack.c
index 68d36e0a56..a292a63b73 100644
--- a/builtin/receive-pack.c
+++ b/builtin/receive-pack.c
@@ -464,7 +464,7 @@ static char *prepare_push_cert_nonce(const char *path, timestamp_t stamp)
unsigned char sha1[GIT_SHA1_RAWSZ];
strbuf_addf(&buf, "%s:%"PRItime, path, stamp);
- hmac_sha1(sha1, buf.buf, buf.len, cert_nonce_seed, strlen(cert_nonce_seed));;
+ hmac_sha1(sha1, buf.buf, buf.len, cert_nonce_seed, strlen(cert_nonce_seed));
strbuf_release(&buf);
/* RFC 2104 5. HMAC-SHA1-80 */