]> git.ipfire.org Git - thirdparty/git.git/blobdiff - builtin/receive-pack.c
Remove superfluous trailing semicolons
[thirdparty/git.git] / builtin / receive-pack.c
index 68d36e0a56c3c72ad76c07af293d20e8254377d1..a292a63b73c9830a5cbd4244b8b8938d5fa0c48d 100644 (file)
@@ -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 */