Skip to content

Commit

Permalink
fix typo in code block, causes undefined variable error (#254)
Browse files Browse the repository at this point in the history
  • Loading branch information
pranabdas committed Jul 6, 2023
1 parent 64aea1c commit 7476696
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/programming/MPI-C.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ int main(int argc, char** argv){
MPI_Comm_size(MPI_COMM_WORLD, &size_Of_Cluster);
MPI_Comm_rank(MPI_COMM_WORLD, &process_Rank);
printf("Hello World from process %d of %d\n", process_rank, size_Of_Cluster);
printf("Hello World from process %d of %d\n", process_Rank, size_Of_Cluster);
MPI_Finalize();
return 0;
Expand Down

0 comments on commit 7476696

Please sign in to comment.