Skip to content

Commit

Permalink
corrected warning: implicit conversion changes signedness (#3982)
Browse files Browse the repository at this point in the history
  • Loading branch information
brtnfld authored Feb 2, 2024
1 parent 6e42618 commit 2c3d23d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/H5FDsubfiling/H5FDsubfiling.c
Original file line number Diff line number Diff line change
Expand Up @@ -2828,7 +2828,7 @@ get_iovec_sizes(subfiling_context_t *sf_context, size_t in_count, haddr_t file_o
* I/O of a size greater than the block size definitionally
* touches all subfiles at least once.
*/
cur_max_num_subfiles = (size_t)num_subfiles;
cur_max_num_subfiles = (int64_t)num_subfiles;
}
else if (data_size < stripe_size) {
/*
Expand Down

0 comments on commit 2c3d23d

Please sign in to comment.