summaryrefslogtreecommitdiffstats
path: root/src/H5Odtype.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Odtype.c')
-rw-r--r--src/H5Odtype.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Odtype.c b/src/H5Odtype.c
index 4315717..3e23374 100644
--- a/src/H5Odtype.c
+++ b/src/H5Odtype.c
@@ -86,7 +86,7 @@ H5O_dtype_decode_helper(const uint8 **pp, H5T_t *dt)
/* decode */
UINT32DECODE(*pp, flags);
- dt->type = flags & 0xff;
+ dt->type = (H5T_class_t)(flags & 0xff);
flags >>= 8;
UINT32DECODE(*pp, dt->size);
@@ -147,8 +147,8 @@ H5O_dtype_decode_helper(const uint8 **pp, H5T_t *dt)
dt->u.compnd.memb = H5MM_xcalloc(dt->u.compnd.nalloc,
sizeof(H5T_member_t));
for (i = 0; i < dt->u.compnd.nmembs; i++) {
- dt->u.compnd.memb[i].name = H5MM_xstrdup(*pp);
- *pp += ((strlen(*pp) + 8) / 8) * 8; /*multiple of 8 w/ null terminator */
+ dt->u.compnd.memb[i].name = H5MM_xstrdup((const char *)*pp);
+ *pp += ((HDstrlen((const char *)*pp) + 8) / 8) * 8; /*multiple of 8 w/ null terminator */
UINT32DECODE(*pp, dt->u.compnd.memb[i].offset);
dt->u.compnd.memb[i].ndims = *(*pp)++;
assert(dt->u.compnd.memb[i].ndims <= 4);
@@ -204,7 +204,7 @@ H5O_dtype_encode_helper(uint8 **pp, const H5T_t *dt)
{
uintn flags = 0;
uintn perm_word;
- char *hdr = *pp;
+ char *hdr = (char *)*pp;
intn i, j, n;
FUNC_ENTER(H5O_dtype_encode_helper, FAIL);