From 9979762bbed5291934a56593dbee49ff9810126d Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sun, 11 Dec 2016 00:01:40 +0100 Subject: [PATCH] Indent --- src/libsodium/crypto_box/crypto_box_easy.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libsodium/crypto_box/crypto_box_easy.c b/src/libsodium/crypto_box/crypto_box_easy.c index e1cba835..04e1f138 100644 --- a/src/libsodium/crypto_box/crypto_box_easy.c +++ b/src/libsodium/crypto_box/crypto_box_easy.c @@ -62,7 +62,8 @@ crypto_box_easy(unsigned char *c, const unsigned char *m, int crypto_box_open_detached_afternm(unsigned char *m, const unsigned char *c, const unsigned char *mac, - unsigned long long clen, const unsigned char *n, + unsigned long long clen, + const unsigned char *n, const unsigned char *k) { return crypto_secretbox_open_detached(m, c, mac, clen, n, k);