From: Taylor R Campbell Date: Wed, 7 Nov 2018 02:39:20 +0000 (+0000) Subject: Fix more formatting. X-Git-Tag: mit-scheme-pucked-10.1.2~16^2~116^2~44 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=30d140e2f3206332ec0879d908737da3ab8aa0b6;p=mit-scheme.git Fix more formatting. --- diff --git a/src/microcode/prchacha.c b/src/microcode/prchacha.c index 2ffcef85e..1bfa74fe4 100644 --- a/src/microcode/prchacha.c +++ b/src/microcode/prchacha.c @@ -28,8 +28,8 @@ USA. #include "prims.h" static void -do_chacha_core(void (*core) (uint8_t *, const uint8_t *, const uint8_t *, - const uint8_t *)) +do_chacha_core (void (*core) (uint8_t *, const uint8_t *, const uint8_t *, + const uint8_t *)) { unsigned long noutput; uint8_t * output = (arg_bytevector (1, (&noutput))); @@ -62,7 +62,7 @@ Compute the ChaCha8 core hash function:\n\ OUTPUT[OFFSET, OFFSET+1, ..., OFFSET+63] := ChaCha8(INPUT, KEY, CONST).") { PRIMITIVE_HEADER (5); - do_chacha_core(&chacha8_core); + do_chacha_core (&chacha8_core); PRIMITIVE_RETURN (UNSPECIFIC); } @@ -72,7 +72,7 @@ Compute the ChaCha12 core hash function:\n\ OUTPUT[OFFSET, OFFSET+1, ..., OFFSET+63] := ChaCha12(INPUT, KEY, CONST).") { PRIMITIVE_HEADER (5); - do_chacha_core(&chacha12_core); + do_chacha_core (&chacha12_core); PRIMITIVE_RETURN (UNSPECIFIC); } @@ -82,6 +82,6 @@ Compute the ChaCha20 core hash function:\n\ OUTPUT[OFFSET, OFFSET+1, ..., OFFSET+63] := ChaCha20(INPUT, KEY, CONST).") { PRIMITIVE_HEADER (5); - do_chacha_core(&chacha20_core); + do_chacha_core (&chacha20_core); PRIMITIVE_RETURN (UNSPECIFIC); }