Skip to content

Commit

Permalink
fix print var size
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF committed Jun 5, 2024
1 parent 3d63c1a commit b3bfc0d
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 @@ -748,7 +748,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 %d...\n",
printf("Warning: user block file name missing. Reserving a size of %ld...\n",
options->ublock_size);
}
}
Expand Down

0 comments on commit b3bfc0d

Please sign in to comment.