File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -699,6 +699,10 @@ static void adios_posix_write_pg (struct adios_file_struct * fd
699
699
int32_t to_write ;
700
700
uint64_t bytes_written = 0 ;
701
701
702
+ int rank = 0 ;
703
+ #ifdef HAVE_MPI
704
+ rank = p -> rank ;
705
+ #endif
702
706
// use offsets set at the end of previous append step
703
707
// fd->current_pg->pg_start_in_file needs to be correctly set before
704
708
// calling adios_build_index_v1()
@@ -736,14 +740,14 @@ static void adios_posix_write_pg (struct adios_file_struct * fd
736
740
if (wrote == -1 )
737
741
{
738
742
adios_error (err_write_error , "Failure to write data to file %s by rank %d: %s\n" ,
739
- fd -> name , p -> rank , strerror (errno ));
743
+ fd -> name , rank , strerror (errno ));
740
744
break ;
741
745
}
742
746
else if (wrote != to_write )
743
747
{
744
748
adios_error (err_write_error , "Failure to write data completely to file %s by rank %d: "
745
749
"Wanted to write %ld bytes to file at once but only %ld was written\n" ,
746
- fd -> name , p -> rank , to_write , wrote );
750
+ fd -> name , rank , to_write , wrote );
747
751
}
748
752
749
753
}
You can’t perform that action at this time.
0 commit comments