diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2022-01-18 21:52:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-18 21:52:01 (GMT) |
commit | bd37363332c0016262a05e4515b9f0e30e9b3d89 (patch) | |
tree | 11fbd1dd00bb16c6e5b6075da5ad9dcb224ed43f /examples | |
parent | 8dc72928b8c2f0390659d14011b34983cf9b1171 (diff) | |
download | hdf5-bd37363332c0016262a05e4515b9f0e30e9b3d89.zip hdf5-bd37363332c0016262a05e4515b9f0e30e9b3d89.tar.gz hdf5-bd37363332c0016262a05e4515b9f0e30e9b3d89.tar.bz2 |
various cleanup java test, test files, comments (#1363)
Diffstat (limited to 'examples')
-rw-r--r-- | examples/h5_extlink.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/h5_extlink.c b/examples/h5_extlink.c index f9d4046..61fd589 100644 --- a/examples/h5_extlink.c +++ b/examples/h5_extlink.c @@ -414,14 +414,14 @@ UD_hard_create(const char *link_name, hid_t loc_group, const void *udata, size_t token = *((H5O_token_t *)udata); - //! [H5Open_by_token_snip] + //! [H5Oopen_by_token_snip] /* Open the object this link points to so that we can increment * its reference count. This also ensures that the token passed * in points to a real object (although this check is not perfect!) */ target_obj = H5Oopen_by_token(loc_group, token); - //! [H5Open_by_token_snip] + //! [H5Oopen_by_token_snip] if (target_obj < 0) { ret_value = -1; |