summaryrefslogtreecommitdiffstats
path: root/src/H5FLprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2001-01-04 01:31:33 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2001-01-04 01:31:33 (GMT)
commit2725a29b0e7158b8b0d8dfd7d3ab42126db6f235 (patch)
tree6e90df8ecc503ee396f666ac1ec8466913cde260 /src/H5FLprivate.h
parent85c19fc0bac344a477066c8239c3a8f935abd75c (diff)
downloadhdf5-2725a29b0e7158b8b0d8dfd7d3ab42126db6f235.zip
hdf5-2725a29b0e7158b8b0d8dfd7d3ab42126db6f235.tar.gz
hdf5-2725a29b0e7158b8b0d8dfd7d3ab42126db6f235.tar.bz2
[svn-r3236] Purpose:
Clean up code. Description: Cleaned up various compiler warnings. Platforms tested: FreeBSD 4.2 (hawkwind)
Diffstat (limited to 'src/H5FLprivate.h')
-rw-r--r--src/H5FLprivate.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5FLprivate.h b/src/H5FLprivate.h
index af3a98f..472bcca 100644
--- a/src/H5FLprivate.h
+++ b/src/H5FLprivate.h
@@ -171,14 +171,14 @@ typedef struct H5FL_arr_head_t {
/*
* Library prototypes.
*/
-__DLL__ void * H5FL_blk_alloc(H5FL_blk_head_t *head, size_t size, uintn clear);
+__DLL__ void * H5FL_blk_alloc(H5FL_blk_head_t *head, hsize_t size, uintn clear);
__DLL__ void * H5FL_blk_free(H5FL_blk_head_t *head, void *block);
-__DLL__ void * H5FL_blk_realloc(H5FL_blk_head_t *head, void *block, size_t new_size);
+__DLL__ void * H5FL_blk_realloc(H5FL_blk_head_t *head, void *block, hsize_t new_size);
__DLL__ void * H5FL_reg_alloc(H5FL_reg_head_t *head, uintn clear);
__DLL__ void * H5FL_reg_free(H5FL_reg_head_t *head, void *obj);
-__DLL__ void * H5FL_arr_alloc(H5FL_arr_head_t *head, size_t elem, uintn clear);
+__DLL__ void * H5FL_arr_alloc(H5FL_arr_head_t *head, hsize_t elem, uintn clear);
__DLL__ void * H5FL_arr_free(H5FL_arr_head_t *head, void *obj);
-__DLL__ void * H5FL_arr_realloc(H5FL_arr_head_t *head, void *obj, size_t new_elem);
+__DLL__ void * H5FL_arr_realloc(H5FL_arr_head_t *head, void *obj, hsize_t new_elem);
__DLL__ herr_t H5FL_garbage_coll(void);
__DLL__ herr_t H5FL_set_free_list_limits(int reg_global_lim, int reg_list_lim,
int arr_global_lim, int arr_list_lim, int blk_global_lim, int blk_list_lim);