From: Lennart Poettering Date: Tue, 17 Nov 2015 00:08:44 +0000 (+0100) Subject: siphash: minor coding style fixes and modernizations X-Git-Tag: v229.1~1^2~115 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=feade5fa43e0e151b8633f50cbe7d46c12d3ce5e;ds=sidebyside siphash: minor coding style fixes and modernizations Only cosmetics really, doesn't change any actual logic. --- diff --git a/src/basic/siphash24.h b/src/basic/siphash24.h index 0e072eba3..ba4f7d01b 100644 --- a/src/basic/siphash24.h +++ b/src/basic/siphash24.h @@ -4,12 +4,12 @@ #include struct siphash { - uint64_t v0; - uint64_t v1; - uint64_t v2; - uint64_t v3; - uint64_t padding; - size_t inlen; + uint64_t v0; + uint64_t v1; + uint64_t v2; + uint64_t v3; + uint64_t padding; + size_t inlen; }; void siphash24_init(struct siphash *state, const uint8_t k[16]);