Skip to content

Commit

Permalink
update patch
Browse files Browse the repository at this point in the history
  • Loading branch information
brtnfld committed Nov 13, 2024
1 parent 0042b10 commit 3aca8f7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions examples/hdf5_examples/h5_interm_group.patch
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
--- h5_interm_group.c 2022-03-16 18:21:18.837044757 -0500
+++ h5_interm_group_logvol.c 2022-03-16 18:21:46.457044898 -0500
@@ -88,10 +88,13 @@
--- h5_interm_group.c 2024-11-13 11:56:00.913059201 -0600
+++ h5_interm_group_logvol.c 2024-11-13 11:56:54.281932771 -0600
@@ -84,11 +84,12 @@
g2_id = H5Gopen2(file, "/G1/G2", H5P_DEFAULT);
status = H5Gget_info(g2_id, &g2_info);
printf("Group /G1/G2 has %d member(s)\n", (int)g2_info.nlinks);
-
+#if 0
for (i = 0; i < (int)g2_info.nlinks; i++) {
H5Lget_name_by_idx(g2_id, ".", H5_INDEX_NAME, H5_ITER_NATIVE, (hsize_t)i, name, 3, H5P_DEFAULT);
printf("Object's name is %s\n", name);
}
+#endif
+
H5Gclose(g2_id);
}
H5Fclose(file);

0 comments on commit 3aca8f7

Please sign in to comment.