diff options
author | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2019-04-04 21:29:37 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2019-04-04 21:29:37 (GMT) |
commit | 0073f198978dea0116bd74816b3119dfeb09144b (patch) | |
tree | db2698fb4cc1d3e332d99834dd2cae170feed2e4 /src/H5trace.c | |
parent | aa696a47715c3dd9c068f71915c6dcf23745441c (diff) | |
download | hdf5-0073f198978dea0116bd74816b3119dfeb09144b.zip hdf5-0073f198978dea0116bd74816b3119dfeb09144b.tar.gz hdf5-0073f198978dea0116bd74816b3119dfeb09144b.tar.bz2 |
Set V112 as the latest format and extend the arrays of version bounds.
Diffstat (limited to 'src/H5trace.c')
-rw-r--r-- | src/H5trace.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/H5trace.c b/src/H5trace.c index 9a13193..23f2f1d 100644 --- a/src/H5trace.c +++ b/src/H5trace.c @@ -1054,7 +1054,11 @@ H5_trace(const double *returning, const char *func, const char *type, ...) break; case H5F_LIBVER_V110: - HDcompile_assert(H5F_LIBVER_LATEST == H5F_LIBVER_V110); + HDfprintf(out, "H5F_LIBVER_V110"); + break; + + case H5F_LIBVER_V112: + HDcompile_assert(H5F_LIBVER_LATEST == H5F_LIBVER_V112); HDfprintf(out, "H5F_LIBVER_LATEST"); break; |