summaryrefslogtreecommitdiffstats
path: root/src/H5SMmessage.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5SMmessage.c')
-rw-r--r--src/H5SMmessage.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5SMmessage.c b/src/H5SMmessage.c
index 26c8341..34fe8fd 100644
--- a/src/H5SMmessage.c
+++ b/src/H5SMmessage.c
@@ -137,7 +137,7 @@ H5SM__compare_iter_op(H5O_t *oh, H5O_mesg_t *mesg /*in,out*/, unsigned sequence,
if (mesg->dirty)
if (H5O_msg_flush(udata->key->file, oh, mesg) < 0)
HGOTO_ERROR(H5E_SOHM, H5E_CANTENCODE, H5_ITER_ERROR,
- "unable to encode object header message")
+ "unable to encode object header message");
assert(udata->key->encoding_size <= mesg->raw_size);
udata->ret = memcmp(udata->key->encoding, mesg->raw, udata->key->encoding_size);
@@ -218,7 +218,7 @@ H5SM__message_compare(const void *rec1, const void *rec2, int *result)
if (mesg->location == H5SM_IN_HEAP) {
/* Call heap op routine with comparison callback */
if (H5HF_op(key->fheap, &(mesg->u.heap_loc.fheap_id), H5SM__compare_cb, &udata) < 0)
- HGOTO_ERROR(H5E_HEAP, H5E_CANTCOMPARE, FAIL, "can't compare btree2 records")
+ HGOTO_ERROR(H5E_HEAP, H5E_CANTCOMPARE, FAIL, "can't compare btree2 records");
} /* end if */
else {
H5O_loc_t oloc; /* Object owning the message */
@@ -230,7 +230,7 @@ H5SM__message_compare(const void *rec1, const void *rec2, int *result)
/* Reset the object location */
if (H5O_loc_reset(&oloc) < 0)
- HGOTO_ERROR(H5E_SYM, H5E_CANTRESET, FAIL, "unable to initialize target location")
+ HGOTO_ERROR(H5E_SYM, H5E_CANTRESET, FAIL, "unable to initialize target location");
/* Set up object location */
oloc.file = key->file;
@@ -243,7 +243,7 @@ H5SM__message_compare(const void *rec1, const void *rec2, int *result)
op.op_type = H5O_MESG_OP_LIB;
op.u.lib_op = H5SM__compare_iter_op;
if (H5O_msg_iterate(&oloc, mesg->msg_type_id, &op, &udata) < 0)
- HGOTO_ERROR(H5E_SYM, H5E_NOTFOUND, FAIL, "error iterating over links")
+ HGOTO_ERROR(H5E_SYM, H5E_NOTFOUND, FAIL, "error iterating over links");
} /* end else */
*result = udata.ret;