From f68fee47892fc528847682afc003097dcee9a765 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Wed, 20 Apr 2022 02:43:45 +0200 Subject: Replace spaces with tabs Signed-off-by: Jason A. Donenfeld --- seedrng.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/seedrng.c b/seedrng.c index b99c7a7..9f93fe2 100644 --- a/seedrng.c +++ b/seedrng.c @@ -60,7 +60,7 @@ struct blake2s_state { static inline void cpu_to_le32_array(uint32_t *buf, unsigned int words) { - while (words--) { + while (words--) { *buf = cpu_to_le32(*buf); ++buf; } @@ -68,10 +68,10 @@ static inline void cpu_to_le32_array(uint32_t *buf, unsigned int words) static inline void le32_to_cpu_array(uint32_t *buf, unsigned int words) { - while (words--) { + while (words--) { *buf = le32_to_cpup(buf); ++buf; - } + } } static inline uint32_t ror32(uint32_t word, unsigned int shift) -- cgit v1.2.3-59-g8ed1b