Skip to content

Commit

Permalink
Feature transfer_search: fix compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ljcarlin committed Mar 22, 2024
1 parent e38ff5a commit 04b2a51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/p4est_communication.c
Original file line number Diff line number Diff line change
Expand Up @@ -2163,7 +2163,7 @@ p4est_transfer_search_internal (p4est_transfer_internal_t *internal)
errsend = 1;
P4EST_LERRORF ("Rank %d would receive %lld points, which exceeds "
"P4EST_LOCIDX_MAX\n",
rank, num_incoming);
rank, (long long) num_incoming);
}

/* synchronise possible error of a process receiving too many points */
Expand Down

0 comments on commit 04b2a51

Please sign in to comment.