Skip to content

Commit

Permalink
Remove Windows oneAPI warning for %ld formatting (#4876)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoklee authored Sep 25, 2024
1 parent 013b1cd commit 7d40520
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/src/h5repack/h5repack.c
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@ check_options(pack_opt_t *options)

if (options->ublock_filename == NULL && options->ublock_size != 0) {
if (options->verbose > 0) {
printf("Warning: user block file name missing. Reserving a size of %ld...\n",
printf("Warning: user block file name missing. Reserving a size of %" PRIuHSIZE "...\n",
options->ublock_size);
}
}
Expand Down

0 comments on commit 7d40520

Please sign in to comment.