summaryrefslogtreecommitdiffstats
path: root/src/H5Oalloc.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-04-27 21:59:38 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-04-27 21:59:38 (GMT)
commitb24e2d4dd861b67a61fcf56be5975bcd4d37203b (patch)
tree1c634f3789ac38449e8c9b7d67fab21e31a33a2c /src/H5Oalloc.c
parent9542a0e21258dc9a6cddd2768312e66a4e9e2e12 (diff)
downloadhdf5-b24e2d4dd861b67a61fcf56be5975bcd4d37203b.zip
hdf5-b24e2d4dd861b67a61fcf56be5975bcd4d37203b.tar.gz
hdf5-b24e2d4dd861b67a61fcf56be5975bcd4d37203b.tar.bz2
[svn-r18649] Description:
Minor tweaks to align w/code on trunk better. Tested on: Mac OS X/32 10.6.3 (amazon) w/debug & production (too minor to require h5committest)
Diffstat (limited to 'src/H5Oalloc.c')
-rw-r--r--src/H5Oalloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Oalloc.c b/src/H5Oalloc.c
index f0836e9..64d2f03 100644
--- a/src/H5Oalloc.c
+++ b/src/H5Oalloc.c
@@ -1130,7 +1130,7 @@ H5O_alloc(H5F_t *f, hid_t dxpl_id, H5O_t *oh, const H5O_msg_class_t *type,
/* Compute the size needed to store the message in the object header */
raw_size = (type->raw_size)(f, FALSE, mesg);
if(0 == raw_size)
- HGOTO_ERROR(H5E_OHDR, H5E_CANTINIT, UFAIL, "can't compute object header message size")
+ HGOTO_ERROR(H5E_OHDR, H5E_CANTINIT, FAIL, "can't compute object header message size")
if(raw_size >= H5O_MESG_MAX_SIZE)
HGOTO_ERROR(H5E_OHDR, H5E_CANTINIT, FAIL, "object header message is too large")
aligned_size = H5O_ALIGN_OH(oh, raw_size);