From ae330742cb10c40145e18c92b189cccb01f9a66f Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sun, 16 Aug 2020 13:59:23 +0200 Subject: [PATCH] Indent --- src/libsodium/crypto_stream/xchacha20/stream_xchacha20.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsodium/crypto_stream/xchacha20/stream_xchacha20.c b/src/libsodium/crypto_stream/xchacha20/stream_xchacha20.c index 8b1bc09a..faa38a1c 100644 --- a/src/libsodium/crypto_stream/xchacha20/stream_xchacha20.c +++ b/src/libsodium/crypto_stream/xchacha20/stream_xchacha20.c @@ -35,7 +35,7 @@ crypto_stream_xchacha20(unsigned char *c, unsigned long long clen, COMPILER_ASSERT(crypto_stream_chacha20_KEYBYTES <= sizeof k2); COMPILER_ASSERT(crypto_stream_chacha20_NONCEBYTES == crypto_stream_xchacha20_NONCEBYTES - - crypto_core_hchacha20_INPUTBYTES); + crypto_core_hchacha20_INPUTBYTES); return crypto_stream_chacha20(c, clen, n + crypto_core_hchacha20_INPUTBYTES, k2);