From ee373efe8084a2a736784f02eea66cdf7fb49caf Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Fri, 15 Oct 2021 10:52:35 -0400 Subject: [PATCH] adjust variable name --- source/distributed/tria_base.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/distributed/tria_base.cc b/source/distributed/tria_base.cc index 95e9266bc4..8264d752dd 100644 --- a/source/distributed/tria_base.cc +++ b/source/distributed/tria_base.cc @@ -1446,14 +1446,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, @@ -1614,12 +1614,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, -- 2.39.5