Skip to content

Commit

Permalink
Committing clang-format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 6, 2025
1 parent f7722a1 commit dc65ea0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/th5s.c
Original file line number Diff line number Diff line change
Expand Up @@ -3351,9 +3351,9 @@ test_h5s_bug2(void)
static void
test_h5s_bug3(void)
{
hsize_t dims[1] = { 10 };
hsize_t start[1] = { 0 };
hsize_t count[1] = { 1 };
hsize_t dims[1] = {10};
hsize_t start[1] = {0};
hsize_t count[1] = {1};
herr_t ret = SUCCEED;
hid_t space1 = H5I_INVALID_HID;
hid_t space2 = H5I_INVALID_HID;
Expand All @@ -3368,12 +3368,12 @@ test_h5s_bug3(void)
/* Select a single, different element in each dataspace */
start[0] = 0;
count[0] = 1;
ret = H5Sselect_hyperslab(space1, H5S_SELECT_SET, start, NULL, count, NULL);
ret = H5Sselect_hyperslab(space1, H5S_SELECT_SET, start, NULL, count, NULL);
CHECK(ret, FAIL, "H5Sselect_hyperslab");

start[0] = 1;
count[0] = 1;
ret = H5Sselect_hyperslab(space2, H5S_SELECT_SET, start, NULL, count, NULL);
ret = H5Sselect_hyperslab(space2, H5S_SELECT_SET, start, NULL, count, NULL);
CHECK(ret, FAIL, "H5Sselect_hyperslab");

/* Combine the selections with AND, resulting in a "none" selection.
Expand Down

0 comments on commit dc65ea0

Please sign in to comment.