summaryrefslogtreecommitdiffstats
path: root/src/H5F.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@lbl.gov>2020-11-26 17:11:35 (GMT)
committerGitHub <noreply@github.com>2020-11-26 17:11:35 (GMT)
commit4fea1bcccd283a407fe0936c56e56cc40a019b3c (patch)
treef1d020e4111b8cd588dd9d0ea895a63856884fda /src/H5F.c
parent2e2ded61816c5dfe22bbe2825b4fc3ede8bbc434 (diff)
downloadhdf5-4fea1bcccd283a407fe0936c56e56cc40a019b3c.zip
hdf5-4fea1bcccd283a407fe0936c56e56cc40a019b3c.tar.gz
hdf5-4fea1bcccd283a407fe0936c56e56cc40a019b3c.tar.bz2
Minor cleanups (#132)
Diffstat (limited to 'src/H5F.c')
-rw-r--r--src/H5F.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5F.c b/src/H5F.c
index cfad9a2..000d74b 100644
--- a/src/H5F.c
+++ b/src/H5F.c
@@ -1051,7 +1051,7 @@ H5Fget_mdc_config(hid_t file_id, H5AC_cache_config_t *config /*out*/)
/* Check args */
if ((NULL == config) || (config->version != H5AC__CURR_CACHE_CONFIG_VERSION))
- HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "Bad configptr")
+ HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "Bad config ptr")
/* Get the file object */
if (NULL == (vol_obj = (H5VL_object_t *)H5I_object(file_id)))