diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-09-24 10:30:47 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-09-24 10:30:47 -0700 |
commit | ae109a9789da452192588b517f893f6bda6383e6 (patch) | |
tree | fa0bfe3be065bcf20fe1671effadc57ba0aab23e /builtin | |
parent | Merge branch 'jk/reopen-tempfile-truncate' (diff) | |
parent | Remove superfluous trailing semicolons (diff) | |
download | tgif-ae109a9789da452192588b517f893f6bda6383e6.tar.xz |
Merge branch 'en/double-semicolon-fix'
Code clean-up.
* en/double-semicolon-fix:
Remove superfluous trailing semicolons
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/receive-pack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/receive-pack.c b/builtin/receive-pack.c index a3bb13af10..4d30001950 100644 --- a/builtin/receive-pack.c +++ b/builtin/receive-pack.c @@ -466,7 +466,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 */ |