From 979b21d67b6ed8b251317f7b2e20a887516d7e81 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Wed, 13 Sep 2017 12:45:04 +0200 Subject: [PATCH] Remove extra semicolumns --- test/default/chacha20.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/default/chacha20.c b/test/default/chacha20.c index 319403e3..0abe8d34 100644 --- a/test/default/chacha20.c +++ b/test/default/chacha20.c @@ -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)