summaryrefslogtreecommitdiffstats
path: root/src/H5Gent.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2015-06-16 13:46:13 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2015-06-16 13:46:13 (GMT)
commit79fe6d27f022b0124782d6e0c6eb345f2e669095 (patch)
tree42851620273b119837bc30534a836192f2904400 /src/H5Gent.c
parentc34e8ef85220b70d3eeed352b4320710f74f4cf9 (diff)
parentafb85e30e5874454fe890bb06c1a8cc67d2dc245 (diff)
downloadhdf5-79fe6d27f022b0124782d6e0c6eb345f2e669095.zip
hdf5-79fe6d27f022b0124782d6e0c6eb345f2e669095.tar.gz
hdf5-79fe6d27f022b0124782d6e0c6eb345f2e669095.tar.bz2
[svn-r27208] merge from trunk.
Diffstat (limited to 'src/H5Gent.c')
-rw-r--r--src/H5Gent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Gent.c b/src/H5Gent.c
index 2cef9f7..3f243de 100644
--- a/src/H5Gent.c
+++ b/src/H5Gent.c
@@ -173,7 +173,7 @@ H5G_ent_decode(const H5F_t *f, const uint8_t **pp, H5G_entry_t *ent)
HGOTO_ERROR(H5E_SYM, H5E_BADVALUE, FAIL, "unknown symbol table entry cache type")
} /* end switch */
- *pp = p_ret + H5G_SIZEOF_ENTRY(f);
+ *pp = p_ret + H5G_SIZEOF_ENTRY_FILE(f);
done:
FUNC_LEAVE_NOAPI(ret_value)
@@ -240,7 +240,7 @@ done:
herr_t
H5G_ent_encode(const H5F_t *f, uint8_t **pp, const H5G_entry_t *ent)
{
- uint8_t *p_ret = *pp + H5G_SIZEOF_ENTRY(f);
+ uint8_t *p_ret = *pp + H5G_SIZEOF_ENTRY_FILE(f);
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(FAIL)