mirror of
https://github.com/HDFGroup/hdf5.git
synced 2026-09-25 04:09:44 +03:00
corrected warning: implicit conversion changes signedness (#3982)
This commit is contained in:
@@ -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) {
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user