Skip to content

Commit

Permalink
Merge pull request #6 from tchaikov/wip-fix-build-i386
Browse files Browse the repository at this point in the history
rocksdb: compilation error on i386
  • Loading branch information
liewegas committed Sep 2, 2015
2 parents f371049 + c487ef4 commit 15ed8c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/thread_status_impl.cc
Expand Up @@ -100,7 +100,7 @@ std::map<std::string, uint64_t>
property_map.insert(
{"BaseInputLevel", op_properties[i] >> 32});
property_map.insert(
{"OutputLevel", op_properties[i] % (1LU << 32)});
{"OutputLevel", op_properties[i] % (1ULL << 32)});
} else if (op_type == OP_COMPACTION &&
i == COMPACTION_PROP_FLAGS) {
property_map.insert(
Expand Down

0 comments on commit 15ed8c9

Please sign in to comment.