summaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorElijah Newren <newren@gmail.com>2018-09-05 17:03:07 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-09-05 17:21:24 (GMT)
commitc3b9bc94b9bee431323856fe2c373312c60969d7 (patch)
treecb6907f9c9c2c5085df4522144f11d99809ec2c9 /builtin
parent53f9a3e157dbbc901a02ac2c73346d375e24978c (diff)
downloadgit-c3b9bc94b9bee431323856fe2c373312c60969d7.zip
git-c3b9bc94b9bee431323856fe2c373312c60969d7.tar.gz
git-c3b9bc94b9bee431323856fe2c373312c60969d7.tar.bz2
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')
-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 68d36e0..a292a63 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 */