diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-08-08 19:11:05 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-08-08 19:11:05 (GMT) |
commit | 9d6434e8af70bb32887920056083b7e1ee69b3b5 (patch) | |
tree | 36a7bd972ff7ec88ca1dc07860edcf808e64df8d /src/H5FL.c | |
parent | 5b0956d313d9ff467fad52662479b5acfe68a093 (diff) | |
download | hdf5-9d6434e8af70bb32887920056083b7e1ee69b3b5.zip hdf5-9d6434e8af70bb32887920056083b7e1ee69b3b5.tar.gz hdf5-9d6434e8af70bb32887920056083b7e1ee69b3b5.tar.bz2 |
[svn-r2470] Changed parameter type from uintn to size_t to clear up some warnings.
Diffstat (limited to 'src/H5FL.c')
-rw-r--r-- | src/H5FL.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1214,7 +1214,7 @@ H5FL_arr_free(H5FL_arr_head_t *head, void *obj) *------------------------------------------------------------------------- */ void * -H5FL_arr_alloc(H5FL_arr_head_t *head, uintn elem, uintn clear) +H5FL_arr_alloc(H5FL_arr_head_t *head, size_t elem, uintn clear) { H5FL_arr_node_t *new_obj; /* Pointer to the new free list node allocated */ void *ret_value; /* Pointer to object to return */ @@ -1302,7 +1302,7 @@ H5FL_arr_alloc(H5FL_arr_head_t *head, uintn elem, uintn clear) *------------------------------------------------------------------------- */ void * -H5FL_arr_realloc(H5FL_arr_head_t *head, void * obj, uintn new_elem) +H5FL_arr_realloc(H5FL_arr_head_t *head, void * obj, size_t new_elem) { H5FL_arr_node_t *temp; /* Temp. ptr to the new free list node allocated */ void *ret_value; /* Pointer to object to return */ |