Skip to content

Commit

Permalink
comment fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jhendersonHDF committed Jul 2, 2024
1 parent 1497c88 commit 935c1fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/dtypes.c
Original file line number Diff line number Diff line change
Expand Up @@ -12141,12 +12141,12 @@ test_versionbounds_create_datatype(H5F_libver_t low, hid_t *dtype_out)
if (inner_cmp_type < 0)
PUTS_ERROR("couldn't create inner compound datatype\n");

/* Insert integer field */
/* Insert inner array type field */
ret = H5Tinsert(inner_cmp_type, "inner_arr", HOFFSET(inner_cmp_t, inner_arr), inner_arr_type);
if (ret < 0)
PUTS_ERROR("couldn't insert compound datatype member\n");

/* Insert integer field */
/* Insert variable-length field */
ret = H5Tinsert(inner_cmp_type, "vlen_float", HOFFSET(inner_cmp_t, vlen_float), vlen_floattype);
if (ret < 0)
PUTS_ERROR("couldn't insert compound datatype member\n");
Expand Down Expand Up @@ -12186,7 +12186,7 @@ test_versionbounds_create_datatype(H5F_libver_t low, hid_t *dtype_out)
if (ret < 0)
PUTS_ERROR("couldn't create outer compound datatype\n");

/* Insert integer field */
/* Insert inner compound datatype field */
ret = H5Tinsert(outer_cmp_type, "inner_cmp", HOFFSET(outer_cmp_t, inner_cmp), inner_cmp_type);
if (ret < 0)
PUTS_ERROR("couldn't insert compound datatype member\n");
Expand Down

0 comments on commit 935c1fb

Please sign in to comment.