Skip to content

Commit cd8c904

Browse files
committed
Fix clang warning about %d with size_t
1 parent 9401589 commit cd8c904

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mpi/mpi_caf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7380,7 +7380,7 @@ PREFIX(co_broadcast) (gfc_descriptor_t *a, int source_image, int *stat,
73807380
size *= dimextent;
73817381
}
73827382

7383-
printf("DTYPE Size: %d\n",GFC_DESCRIPTOR_SIZE(a));
7383+
printf("DTYPE Size: %zd\n",GFC_DESCRIPTOR_SIZE(a));
73847384

73857385
if (rank == 0)
73867386
{

0 commit comments

Comments
 (0)