Fixed compile error in db/flush_job.cc

Summary:
Fixed compile error in db/flush_job.cc

Test Plan:
make
This commit is contained in:
Yueh-Hsuan Chiang 2014-11-07 15:11:36 -08:00
parent 642ac9d8ab
commit b622ba5d6b

View file

@ -105,11 +105,11 @@ Status FlushJob::Run(uint64_t* file_number) {
}
if (!s.ok()) {
cfd_->imm()->RollbackMemtableFlush(mems, file_number);
cfd_->imm()->RollbackMemtableFlush(mems, fn);
} else {
// Replace immutable memtable with the generated Table
s = cfd_->imm()->InstallMemtableFlushResults(
cfd_, mutable_cf_options_, mems, versions_, db_mutex_, file_number,
cfd_, mutable_cf_options_, mems, versions_, db_mutex_, fn,
&job_context_->memtables_to_free, db_directory_, log_buffer_);
}