diff options
Diffstat (limited to 'examples/h5_interm_group.c')
-rw-r--r-- | examples/h5_interm_group.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/h5_interm_group.c b/examples/h5_interm_group.c index 95ed910..3d04d2e 100644 --- a/examples/h5_interm_group.c +++ b/examples/h5_interm_group.c @@ -91,7 +91,7 @@ main(void) if (H5Lexists(file, "/G1/G2", H5P_DEFAULT)) { g2_id = H5Gopen2(file, "/G1/G2", H5P_DEFAULT); - status = H5Gget_info(g2_id, ".", &g2_info, H5P_DEFAULT); + status = H5Gget_info(g2_id, &g2_info); printf("Group /G1/G2 has %d member(s)\n", (int)g2_info.nlinks); for (i=0; i < (int)g2_info.nlinks; i++) { |