Skip to content

Commit

Permalink
Fix missed HDrandom after GitHub merge
Browse files Browse the repository at this point in the history
  • Loading branch information
derobins committed Apr 7, 2024
1 parent c6a4a6c commit c50b6b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/tselect.c
Original file line number Diff line number Diff line change
Expand Up @@ -6368,8 +6368,8 @@ test_select_hyper_union_random_5d(hid_t read_plist)
for (i = 0; i < NHYPERSLABS; i++) {
/* Select random hyperslab location & size for selection */
for (j = 0; j < SPACE5_RANK; j++) {
start[j] = ((hsize_t)HDrandom() % dims1[j]);
count[j] = (((hsize_t)HDrandom() % (dims1[j] - start[j])) + 1);
start[j] = ((hsize_t)rand() % dims1[j]);
count[j] = (((hsize_t)rand() % (dims1[j] - start[j])) + 1);
}

/* Select hyperslab */
Expand Down

0 comments on commit c50b6b1

Please sign in to comment.