diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2022-04-25 21:29:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-25 21:29:00 (GMT) |
commit | 0fffb26c013146cc817ab1c9f2956ad84919a63e (patch) | |
tree | ad6e1170886cf68a346802134681aeebe94d7c25 | |
parent | 0fba6cbcda103b8b6f71caa56158cf0a12d77049 (diff) | |
download | hdf5-0fffb26c013146cc817ab1c9f2956ad84919a63e.zip hdf5-0fffb26c013146cc817ab1c9f2956ad84919a63e.tar.gz hdf5-0fffb26c013146cc817ab1c9f2956ad84919a63e.tar.bz2 |
Minor things noticed while bringing VFD SWMR in line with develop (#1691)
-rw-r--r-- | src/H5AC.c | 2 | ||||
-rw-r--r-- | src/H5C.c | 20 | ||||
-rw-r--r-- | src/H5FD.c | 2 | ||||
-rw-r--r-- | src/H5Oflush.c | 1 |
4 files changed, 12 insertions, 13 deletions
@@ -2432,7 +2432,7 @@ done: /*------------------------------------------------------------------------------ * Function: H5AC_expunge_tag_type_metadata() * - * Purpose: Wrapper for cache level function which expunge entries with + * Purpose: Wrapper for cache level function which expunges entries with * a specific tag and type id. * * Return: SUCCEED on success, FAIL otherwise. @@ -61,16 +61,16 @@ /***********/ /* Headers */ /***********/ -#include "H5private.h" /* Generic Functions */ -#include "H5Cpkg.h" /* Cache */ -#include "H5CXprivate.h" /* API Contexts */ -#include "H5Eprivate.h" /* Error handling */ -#include "H5Fpkg.h" /* Files */ -#include "H5FLprivate.h" /* Free Lists */ -#include "H5Iprivate.h" /* IDs */ -#include "H5MFprivate.h" /* File memory management */ -#include "H5MMprivate.h" /* Memory management */ -#include "H5Pprivate.h" /* Property lists */ +#include "H5private.h" /* Generic Functions */ +#include "H5Cpkg.h" /* Cache */ +#include "H5CXprivate.h" /* API Contexts */ +#include "H5Eprivate.h" /* Error handling */ +#include "H5Fpkg.h" /* Files */ +#include "H5FLprivate.h" /* Free Lists */ +#include "H5Iprivate.h" /* IDs */ +#include "H5MFprivate.h" /* File memory management */ +#include "H5MMprivate.h" /* Memory management */ +#include "H5Pprivate.h" /* Property lists */ /****************/ /* Local Macros */ @@ -2193,7 +2193,7 @@ H5FD_ctl(H5FD_t *file, uint64_t op_code, uint64_t flags, const void *input, void else if (flags & H5FD_CTL__FAIL_IF_UNKNOWN_FLAG) { HGOTO_ERROR(H5E_VFL, H5E_FCNTL, FAIL, - "VFD ctl request failed (no ctl and fail if unknown flag is set)") + "VFD ctl request failed (no ctl callback and fail if unknown flag is set)") } done: diff --git a/src/H5Oflush.c b/src/H5Oflush.c index 5d5c5da..d7c7c02 100644 --- a/src/H5Oflush.c +++ b/src/H5Oflush.c @@ -37,7 +37,6 @@ #include "H5CXprivate.h" /* API Contexts */ #include "H5Dprivate.h" /* Datasets */ #include "H5Eprivate.h" /* Errors */ -#include "H5ESprivate.h" /* Event Sets */ #include "H5Fprivate.h" /* Files */ #include "H5Gprivate.h" /* Groups */ #include "H5Iprivate.h" /* IDs */ |