chiark / gitweb /
siphash: minor coding style fixes and modernizations
authorLennart Poettering <lennart@poettering.net>
Tue, 17 Nov 2015 00:08:44 +0000 (01:08 +0100)
committerSven Eden <yamakuzure@gmx.net>
Wed, 17 May 2017 13:22:13 +0000 (15:22 +0200)
Only cosmetics really, doesn't change any actual logic.

src/basic/siphash24.h

index 0e072eba364a5f5785da44ad086786931582f7c9..ba4f7d01b65c3e115b2198cdf006bcc51a235a1b 100644 (file)
@@ -4,12 +4,12 @@
 #include <sys/types.h>
 
 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]);