Modifications based on pull request review.

Made couple changes based on the review comments.
This commit is contained in:
Vailin Choi 2017-04-26 14:00:34 -05:00
parent 14e9856778
commit ae05b0c726
2 changed files with 3 additions and 3 deletions

View File

@ -94,7 +94,7 @@ done:
ret_value = FAIL; ret_value = FAIL;
} }
return(ret_value); return ret_value;
} /* end H5DOwrite_chunk() */ } /* end H5DOwrite_chunk() */
@ -163,7 +163,7 @@ done:
ret_value = FAIL; ret_value = FAIL;
} }
return(ret_value); return ret_value;
} /* end H5DOread_chunk() */ } /* end H5DOread_chunk() */

View File

@ -1126,4 +1126,4 @@ H5Dget_chunk_storage_size(hid_t dset_id, const hsize_t *offset, hsize_t *chunk_n
done: done:
FUNC_LEAVE_API(ret_value); FUNC_LEAVE_API(ret_value);
} } /* H5Dget_chunk_storage_size() */