indexedlog: fix a typo in benchmarks

Summary:
This belongs to D20149376. However buck test does not include benchmarks so it
was not noticed.

Reviewed By: DurhamG

Differential Revision: D20505097

fbshipit-source-id: 24daeb17b68808f8e69e18452ab2cf26c7aa10a7
This commit is contained in:
Jun Wu 2020-03-18 09:27:15 -07:00 committed by Facebook GitHub Bot
parent d2cba5a169
commit e48079180f

View File

@ -26,7 +26,7 @@ fn gen_buf(size: usize) -> Vec<u8> {
/// Default open options: 4K checksum chunk
fn open_opts() -> OpenOptions {
let mut open_opts = OpenOptions::new();
open_opts.checksum_chunk_size_log(12);
open_opts.checksum_chunk_size_logarithm(12);
open_opts
}