diff options
author | Jason Evans <je@fb.com> | 2014-01-02 21:38:23 (GMT) |
---|---|---|
committer | Jason Evans <je@fb.com> | 2014-01-02 21:38:23 (GMT) |
commit | 5aeeda6f927005294c2e23605b57c5d601a80a8c (patch) | |
tree | 94518da5d2ce6ff5be6540d864a63e928272844f | |
parent | 040531292147e8e4847d6c666746a426403d0cf5 (diff) | |
download | jemalloc-5aeeda6f927005294c2e23605b57c5d601a80a8c.zip jemalloc-5aeeda6f927005294c2e23605b57c5d601a80a8c.tar.gz jemalloc-5aeeda6f927005294c2e23605b57c5d601a80a8c.tar.bz2 |
Clean up code formatting.
-rw-r--r-- | test/unit/hash.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/unit/hash.c b/test/unit/hash.c index 939bf9b..0446e52 100644 --- a/test/unit/hash.c +++ b/test/unit/hash.c @@ -90,14 +90,12 @@ hash_variant_verify(hash_variant_t variant) hash_x86_128(key, i, 256-i, out); memcpy(&hashes[i*hashbytes], out, hashbytes); break; - } - case hash_variant_x64_128: { + } case hash_variant_x64_128: { uint64_t out[2]; hash_x64_128(key, i, 256-i, out); memcpy(&hashes[i*hashbytes], out, hashbytes); break; - } - default: not_reached(); + } default: not_reached(); } } |