summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--hl/src/H5DO.c4
-rw-r--r--src/H5D.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/hl/src/H5DO.c b/hl/src/H5DO.c
index 22d40fc..99cf2f7 100644
--- a/hl/src/H5DO.c
+++ b/hl/src/H5DO.c
@@ -94,7 +94,7 @@ done:
ret_value = FAIL;
}
- return(ret_value);
+ return ret_value;
} /* end H5DOwrite_chunk() */
@@ -163,7 +163,7 @@ done:
ret_value = FAIL;
}
- return(ret_value);
+ return ret_value;
} /* end H5DOread_chunk() */
diff --git a/src/H5D.c b/src/H5D.c
index a6de952..fc2024a 100644
--- a/src/H5D.c
+++ b/src/H5D.c
@@ -1126,4 +1126,4 @@ H5Dget_chunk_storage_size(hid_t dset_id, const hsize_t *offset, hsize_t *chunk_n
done:
FUNC_LEAVE_API(ret_value);
-}
+} /* H5Dget_chunk_storage_size() */