summaryrefslogtreecommitdiffstats
path: root/src/H5Oginfo.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2018-09-25 14:13:50 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2018-09-25 14:13:50 (GMT)
commit532a8df687e6acff18453fec6b8fe22f4bc65ebe (patch)
tree3d7904fedbbf204fd7aa49eabe598e672de43f99 /src/H5Oginfo.c
parented6cfe8ee6c09ac38cd6905a79cc9a5d36e779cd (diff)
parent8e3b094bad1706b444554cd23591fd1c4431c1f1 (diff)
downloadhdf5-532a8df687e6acff18453fec6b8fe22f4bc65ebe.zip
hdf5-532a8df687e6acff18453fec6b8fe22f4bc65ebe.tar.gz
hdf5-532a8df687e6acff18453fec6b8fe22f4bc65ebe.tar.bz2
Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop)
* commit '8e3b094bad1706b444554cd23591fd1c4431c1f1': Remainder of vol_normalization changes (dataset, attribute, files, objects).
Diffstat (limited to 'src/H5Oginfo.c')
-rw-r--r--src/H5Oginfo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Oginfo.c b/src/H5Oginfo.c
index b75a9c5..4b34a52 100644
--- a/src/H5Oginfo.c
+++ b/src/H5Oginfo.c
@@ -113,7 +113,7 @@ H5O_ginfo_decode(H5F_t H5_ATTR_UNUSED *f, H5O_t H5_ATTR_UNUSED *open_oh,
/* Allocate space for message */
if(NULL == (ginfo = H5FL_CALLOC(H5O_ginfo_t)))
- HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed")
+ HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed")
/* Get the flags for the group */
flags = *p++;
@@ -231,7 +231,7 @@ H5O_ginfo_copy(const void *_mesg, void *_dest)
/* check args */
HDassert(ginfo);
if(!dest && NULL == (dest = H5FL_MALLOC(H5O_ginfo_t)))
- HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed")
+ HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed")
/* copy */
*dest = *ginfo;