Skip to content

Commit 280121c

Browse files
committed
do not use rank in non-mpi code since it's missing in struct
1 parent 17aee8a commit 280121c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/write/adios_posix.c

+6-2
Original file line numberDiff line numberDiff line change
@@ -699,6 +699,10 @@ static void adios_posix_write_pg (struct adios_file_struct * fd
699699
int32_t to_write;
700700
uint64_t bytes_written = 0;
701701

702+
int rank = 0;
703+
#ifdef HAVE_MPI
704+
rank = p->rank;
705+
#endif
702706
// use offsets set at the end of previous append step
703707
// fd->current_pg->pg_start_in_file needs to be correctly set before
704708
// calling adios_build_index_v1()
@@ -736,14 +740,14 @@ static void adios_posix_write_pg (struct adios_file_struct * fd
736740
if (wrote == -1)
737741
{
738742
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));
740744
break;
741745
}
742746
else if (wrote != to_write)
743747
{
744748
adios_error (err_write_error, "Failure to write data completely to file %s by rank %d: "
745749
"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);
747751
}
748752

749753
}

0 commit comments

Comments
 (0)