chiark / gitweb /
siphash: minor coding style fixes and modernizations
[elogind.git] / 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]);