summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@lbl.gov>2020-07-03 16:28:12 (GMT)
committerQuincey Koziol <koziol@lbl.gov>2020-07-03 16:28:12 (GMT)
commit13c9b3768e6193db89d06faf59194b77d7747f45 (patch)
tree7a18fc179a15db9b1ddfeadcbe62570aa9ae63d4 /examples
parent7443e5d53d1c6f15e095de7c44bcc3a5a46d9cf7 (diff)
downloadhdf5-13c9b3768e6193db89d06faf59194b77d7747f45.zip
hdf5-13c9b3768e6193db89d06faf59194b77d7747f45.tar.gz
hdf5-13c9b3768e6193db89d06faf59194b77d7747f45.tar.bz2
Address CMake and deprecated API build failures from monotonic timer patch.
Diffstat (limited to 'examples')
-rw-r--r--examples/h5_debug_trace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/h5_debug_trace.c b/examples/h5_debug_trace.c
index 3d89ba4..5da55ed 100644
--- a/examples/h5_debug_trace.c
+++ b/examples/h5_debug_trace.c
@@ -121,7 +121,7 @@ main(int argc, char **argv)
err = H5Pset_shuffle(pid);
sid = H5Screate_simple(1, dims, dims);
- did = H5Dcreate(fid, "somedata", H5T_NATIVE_INT, sid, H5P_DEFAULT, pid, H5P_DEFAULT);
+ did = H5Dcreate2(fid, "somedata", H5T_NATIVE_INT, sid, H5P_DEFAULT, pid, H5P_DEFAULT);
err = H5Dwrite(did, H5T_NATIVE_INT, sid, sid, H5P_DEFAULT, data);
H5Sclose(sid);