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 f04988e commit e38ff5a
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 @@ -2161,7 +2161,7 @@ p4est_transfer_search_internal (p4est_transfer_internal_t *internal)
/* check that we do not receive more than P4EST_LOCIDX_MAX points */
if (num_incoming > (size_t) P4EST_LOCIDX_MAX) {
errsend = 1;
P4EST_LERRORF ("Rank %d would receive %ld points, which exceeds "
P4EST_LERRORF ("Rank %d would receive %lld points, which exceeds "
"P4EST_LOCIDX_MAX\n",
rank, num_incoming);
}
Expand Down

0 comments on commit e38ff5a

Please sign in to comment.