From 434e3691ba9fb76a0fcdd09ead35acef1b759405 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Thu, 23 Feb 2017 11:22:58 +0100 Subject: [PATCH] Indent --- test/default/shorthash.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/test/default/shorthash.c b/test/default/shorthash.c index 9205740f..eedd2f19 100644 --- a/test/default/shorthash.c +++ b/test/default/shorthash.c @@ -4,7 +4,8 @@ #define MAXLEN 64 -int main(void) +int +main(void) { unsigned char in[MAXLEN]; unsigned char out[crypto_shorthash_BYTES]; @@ -28,8 +29,8 @@ int main(void) assert(crypto_shorthash_keybytes() > 0); assert(strcmp(crypto_shorthash_primitive(), "siphash24") == 0); assert(crypto_shorthash_bytes() == crypto_shorthash_siphash24_bytes()); - assert(crypto_shorthash_keybytes() - == crypto_shorthash_siphash24_keybytes()); + assert(crypto_shorthash_keybytes() == + crypto_shorthash_siphash24_keybytes()); return 0; }