summaryrefslogtreecommitdiffstats
path: root/src/H5Fsfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Fsfile.c')
-rw-r--r--src/H5Fsfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Fsfile.c b/src/H5Fsfile.c
index 312ddf0..ef80a79 100644
--- a/src/H5Fsfile.c
+++ b/src/H5Fsfile.c
@@ -99,7 +99,7 @@ H5F__sfile_add(H5F_shared_t *shared)
/* Allocate new shared file node */
if (NULL == (new_shared = H5FL_CALLOC(H5F_sfile_node_t)))
- HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed")
+ HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed");
/* Set shared file value */
new_shared->shared = shared;
@@ -180,7 +180,7 @@ H5F__sfile_remove(H5F_shared_t *shared)
/* Indicate error if the node wasn't found */
if (curr == NULL)
- HGOTO_ERROR(H5E_FILE, H5E_NOTFOUND, FAIL, "can't find shared file info")
+ HGOTO_ERROR(H5E_FILE, H5E_NOTFOUND, FAIL, "can't find shared file info");
/* Remove node found from list */
if (last != NULL)