Skip to content

Commit

Permalink
Make whitespace change for _database_size fix same as in [5.0] PR.
Browse files Browse the repository at this point in the history
  • Loading branch information
greg7mdp committed Nov 8, 2023
1 parent 734dc46 commit 7b9a4f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pinnable_mapped_file.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ pinnable_mapped_file::pinnable_mapped_file(const std::filesystem::path& dir, boo
else if(shared_file_size < existing_file_size) {
_database_size = existing_file_size;
std::cerr << "CHAINBASE: \"" << _database_name << "\" requested size of " << shared_file_size << " is less than "
"existing size of " << existing_file_size << ". This database will not be shrunk and will "
"remain at " << existing_file_size << '\n';
"existing size of " << existing_file_size << ". This database will not be shrunk and will "
"remain at " << existing_file_size << '\n';
}
_file_mapping = bip::file_mapping(_data_file_path.generic_string().c_str(), bip::read_write);
_file_mapped_region = bip::mapped_region(_file_mapping, bip::read_write);
Expand Down

0 comments on commit 7b9a4f0

Please sign in to comment.