Skip to content

Commit

Permalink
Merge pull request XRPLF#299 from ankgup87/master
Browse files Browse the repository at this point in the history
[Java] Fix build
  • Loading branch information
ankgup87 committed Sep 19, 2014
2 parents adae3ca + b93797a commit e17bc65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/rocksjni/write_batch.cc
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ jbyteArray Java_org_rocksdb_WriteBatchTest_getContents(
options.memtable_factory = factory;
rocksdb::MemTable* mem = new rocksdb::MemTable(
cmp, rocksdb::ImmutableCFOptions(options),
rocksdb::MemTableOptions(options));
rocksdb::MemTableOptions(rocksdb::MutableCFOptions(options), options));
mem->Ref();
std::string state;
rocksdb::ColumnFamilyMemTablesDefault cf_mems_default(mem, &options);
Expand Down

0 comments on commit e17bc65

Please sign in to comment.