From 8b7f03ddf7bd8d9f41c71b68a1f1b7a83698b137 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sat, 26 Nov 2016 21:16:42 +0100 Subject: [PATCH] Indent --- .../box_curve25519xchacha20poly1305_easy.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libsodium/crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305_easy.c b/src/libsodium/crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305_easy.c index 0a550ced..f8d8fb00 100644 --- a/src/libsodium/crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305_easy.c +++ b/src/libsodium/crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305_easy.c @@ -30,9 +30,9 @@ crypto_box_curve25519xchacha20poly1305_detached(unsigned char *c, unsigned char k[crypto_box_curve25519xchacha20poly1305_BEFORENMBYTES]; int ret; - (void)sizeof(int[crypto_box_curve25519xchacha20poly1305_BEFORENMBYTES - >= crypto_secretbox_xchacha20poly1305_KEYBYTES ? - 1 : -1]); + (void) sizeof(int[crypto_box_curve25519xchacha20poly1305_BEFORENMBYTES + >= crypto_secretbox_xchacha20poly1305_KEYBYTES ? + 1 : -1]); if (crypto_box_curve25519xchacha20poly1305_beforenm(k, pk, sk) != 0) { return -1; }