Skip to content

Commit

Permalink
Correct spelling and CI failures.
Browse files Browse the repository at this point in the history
  • Loading branch information
vchoi-hdfgroup committed Aug 12, 2024
1 parent 30c7992 commit f3e52c1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doxygen/examples/H5D_sparse_examples.c
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ fail_file:;
goto fail_get_info;
}

// Use the offset just retrieved to obtain structured chunk info by coordindates
// Use the offset just retrieved to obtain structured chunk info by coordinates
if (H5Dget_struct_chunk_info_by_coord(did, offset, NULL, &addr, &chunk_size) < 0) {
ret_val = EXIT_FAILURE;
goto fail_get_info;
Expand Down
4 changes: 2 additions & 2 deletions src/H5Pdcpl.c
Original file line number Diff line number Diff line change
Expand Up @@ -3607,7 +3607,7 @@ H5Pset_dset_no_attrs_hint(hid_t dcpl_id, hbool_t minimize)
*-------------------------------------------------------------------------
*/
herr_t
H5Pset_struct_chunk(hid_t plist_id, int ndims, const hsize_t dim[/*ndims*/], unsigned flag)
H5Pset_struct_chunk(hid_t plist_id, int ndims, const hsize_t dim[/*ndims*/], unsigned H5_ATTR_UNUSED flag)
{
H5P_genplist_t *plist; /* Property list pointer */
H5O_layout_t chunk_layout; /* Layout information for setting chunk info */
Expand Down Expand Up @@ -3637,7 +3637,7 @@ H5Pset_struct_chunk(hid_t plist_id, int ndims, const hsize_t dim[/*ndims*/], uns
chunk_layout.u.chunk.dim[u] = (uint32_t)dim[u]; /* Store user's chunk dimensions */
} /* end for */

/* TBD: should set fields u.struct_chunk e.g. struct_type */
/* TBD: should set fields u.struct_chunk e.g. struct_type to parameter flag */

/* Get the plist structure */
if (NULL == (plist = H5P_object_verify(plist_id, H5P_DATASET_CREATE)))
Expand Down
2 changes: 1 addition & 1 deletion test/sparse_storage.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ test_sparse_direct_chunk(hid_t fapl)
if (H5Sencode2(sid, wr_buf0, &encode_size, H5P_DEFAULT) < 0)
FAIL_STACK_ERROR;

/* Set up data into the bufer for section 1 */
/* Set up data into the buffer for section 1 */
wr_buf1[0] = 32;
wr_buf1[1] = 33;
wr_buf1[2] = 34;
Expand Down

0 comments on commit f3e52c1

Please sign in to comment.