Remove extra semicolumns

This commit is contained in:
Frank Denis
2017-09-13 12:45:04 +02:00
parent 62c41c703e
commit 979b21d67b
+2 -2
View File
@@ -75,7 +75,7 @@ void tv(void)
crypto_stream_chacha20_xor_ic(out, out, sizeof out, nonce, 1U, key);
sodium_bin2hex(out_hex, sizeof out_hex, out, sizeof out);
printf("[%s]\n", out_hex);
};
}
static
void tv_ietf(void)
@@ -163,7 +163,7 @@ void tv_ietf(void)
crypto_stream_chacha20_ietf_xor_ic(out, out, sizeof out, nonce, 1U, key);
sodium_bin2hex(out_hex, sizeof out_hex, out, sizeof out);
printf("[%s]\n", out_hex);
};
}
int
main(void)