summaryrefslogtreecommitdiffstats
path: root/src/H5Pencdec.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2018-09-24 20:55:19 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2018-09-24 20:55:19 (GMT)
commit96d5da7f1ad681573d42d2a4fd9e422fe049442d (patch)
tree6e2c3edf6325390b6cede7ee07daa7ff87b52950 /src/H5Pencdec.c
parent9045cf049f74e017e20ed366d9a811a7902cf8ff (diff)
parente96bd2d46e208e0eb6c62cfcc4f86141f933884e (diff)
downloadhdf5-96d5da7f1ad681573d42d2a4fd9e422fe049442d.zip
hdf5-96d5da7f1ad681573d42d2a4fd9e422fe049442d.tar.gz
hdf5-96d5da7f1ad681573d42d2a4fd9e422fe049442d.tar.bz2
Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop)
* commit 'e96bd2d46e208e0eb6c62cfcc4f86141f933884e': CMake changes for SKIPPED and flush tests H5S adjust callbacks now return an herr_t instead of void. Normalization with vol_integration (property lists, file drivers, other misc).
Diffstat (limited to 'src/H5Pencdec.c')
-rw-r--r--src/H5Pencdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Pencdec.c b/src/H5Pencdec.c
index 73c48d7..8b9962f 100644
--- a/src/H5Pencdec.c
+++ b/src/H5Pencdec.c
@@ -428,7 +428,7 @@ H5P__encode(const H5P_genplist_t *plist, hbool_t enc_all_prop, void *buf,
/* Iterate over all properties in property list, encoding them */
idx = 0;
- if(H5P_iterate_plist(plist, enc_all_prop, &idx, H5P__encode_cb, &udata) < 0)
+ if(H5P__iterate_plist(plist, enc_all_prop, &idx, H5P__encode_cb, &udata) < 0)
HGOTO_ERROR(H5E_PLIST, H5E_BADITER, FAIL, "can't iterate over properties")
/* Encode a terminator for list of properties */