From: Timo Heister Date: Fri, 15 Oct 2021 14:52:35 +0000 (-0400) Subject: adjust variable name X-Git-Tag: v9.4.0-rc1~933^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F12830%2Fhead;p=dealii.git adjust variable name --- diff --git a/source/distributed/tria_base.cc b/source/distributed/tria_base.cc index 8d3d572489..26162dfef3 100644 --- a/source/distributed/tria_base.cc +++ b/source/distributed/tria_base.cc @@ -1443,14 +1443,14 @@ namespace parallel // Make sure we do the following computation in 64bit integers to be able // to handle 4GB+ files: - const MPI_Offset my_offset = + const MPI_Offset my_global_file_position = size_header + static_cast(global_first_cell) * sizes_fixed_cumulative.back(); const char *data = src_data_fixed.data(); ierr = MPI_File_write_at(fh, - my_offset, + my_global_file_position, DEAL_II_MPI_CONST_CAST(data), src_data_fixed.size(), // local buffer MPI_CHAR, @@ -1611,12 +1611,12 @@ namespace parallel // Make sure we do the following computation in 64bit integers to be able // to handle 4GB+ files: - const MPI_Offset my_offset = + const MPI_Offset my_global_file_position = size_header + static_cast(global_first_cell) * sizes_fixed_cumulative.back(); ierr = MPI_File_read_at(fh, - my_offset, + my_global_file_position, dest_data_fixed.data(), dest_data_fixed.size(), // local buffer MPI_CHAR,