diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-08-29 13:19:57 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-08-29 13:19:57 (GMT) |
commit | ea7b995476576bc6850fd837a69e34c427333b88 (patch) | |
tree | b0936527df7b383f997a6e0da277606b3cbbd125 /examples/h5_extlink.c | |
parent | bc07e61d2937d1e62e0fc1fec10f54ed9647fa3b (diff) | |
download | hdf5-ea7b995476576bc6850fd837a69e34c427333b88.zip hdf5-ea7b995476576bc6850fd837a69e34c427333b88.tar.gz hdf5-ea7b995476576bc6850fd837a69e34c427333b88.tar.bz2 |
[svn-r14124] Description:
Fix typo H5Gopenw -> H5Gopen2
Tested on:
FreeBSD/32 6.2 (duty)
Diffstat (limited to 'examples/h5_extlink.c')
-rw-r--r-- | examples/h5_extlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/h5_extlink.c b/examples/h5_extlink.c index 0f86135..f40e509 100644 --- a/examples/h5_extlink.c +++ b/examples/h5_extlink.c @@ -173,7 +173,7 @@ static void extlink_prefix_example(void) H5Gclose(group_id); /* Each file has had a group created inside it using the same external link. */ - group_id = H5Gopenw(red_file_id, "pink", H5P_DEFAULT); + group_id = H5Gopen2(red_file_id, "pink", H5P_DEFAULT); group2_id = H5Gopen2(blue_file_id, "sky blue", H5P_DEFAULT); /* Clean up our open IDs */ |