Clean up code formatting.

This commit is contained in:
Jason Evans 2014-01-02 13:38:23 -08:00
parent 0405312921
commit 5aeeda6f92

View File

@ -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();
}
}