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; }