mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-05-30 00:27:30 +03:00
Clean up code formatting.
This commit is contained in:
parent
0405312921
commit
5aeeda6f92
1 changed files with 2 additions and 4 deletions
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue