summaryrefslogtreecommitdiffstats
path: root/src/H5Odtype.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1998-10-26 17:14:00 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1998-10-26 17:14:00 (GMT)
commit5ff842ebefb4adcebaaecd5b6809f32f614ed932 (patch)
tree02c8350835b930561d22c85d37f3221d4536d372 /src/H5Odtype.c
parentdb9525c2a3ee70379032bae71f26866451df7e58 (diff)
downloadhdf5-5ff842ebefb4adcebaaecd5b6809f32f614ed932.zip
hdf5-5ff842ebefb4adcebaaecd5b6809f32f614ed932.tar.gz
hdf5-5ff842ebefb4adcebaaecd5b6809f32f614ed932.tar.bz2
[svn-r790] Updated parameters for H5R API and changed constants from pointers to references
Diffstat (limited to 'src/H5Odtype.c')
-rw-r--r--src/H5Odtype.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Odtype.c b/src/H5Odtype.c
index 26d42f1..26bb58d 100644
--- a/src/H5Odtype.c
+++ b/src/H5Odtype.c
@@ -218,7 +218,7 @@ H5O_dtype_decode_helper(const uint8 **pp, H5T_t *dt)
}
break;
- case H5T_POINTER:
+ case H5T_REFERENCE:
dt->u.atomic.order = H5T_ORDER_NONE;
dt->u.atomic.prec = 8 * dt->size;
dt->u.atomic.offset = 0;
@@ -466,7 +466,7 @@ H5O_dtype_encode_helper(uint8 **pp, const H5T_t *dt)
}
break;
- case H5T_POINTER:
+ case H5T_REFERENCE:
flags |= (dt->u.atomic.u.r.rtype & 0x0f);
break;