From b8b5607cfe7cfb73b4a6642cd31d0220f78a392b Mon Sep 17 00:00:00 2001 From: Pedro Vicente Nunes Date: Thu, 7 Dec 2006 10:48:19 -0500 Subject: [svn-r13030] warnings clean ../../../hdf5/tools/h5repack/h5repack_opttable.c:240: warning: passing arg 2 of `aux_tblinsert_layout' as signed due to prototype --- tools/h5repack/h5repack_opttable.c | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/tools/h5repack/h5repack_opttable.c b/tools/h5repack/h5repack_opttable.c index c77837e..1a65cbf 100644 --- a/tools/h5repack/h5repack_opttable.c +++ b/tools/h5repack/h5repack_opttable.c @@ -44,8 +44,6 @@ void init_packobject(pack_info_t *obj) obj->refobj_id = -1; obj->layout = H5D_LAYOUT_ERROR; obj->nfilters = 0; - - } /*------------------------------------------------------------------------- @@ -59,7 +57,7 @@ void init_packobject(pack_info_t *obj) */ static void aux_tblinsert_filter(pack_opttbl_t *table, - int I, + unsigned int I, filter_info_t filt) { if (table->objs[ I ].nfiltersnelems+n_objs >= table->size) @@ -305,8 +303,8 @@ int options_add_filter(obj_list_t *obj_list, pack_opttbl_t *table ) { - unsigned int i; - int j, I, added=0, found=0; + unsigned int i, I; + int j, added=0, found=0; /* increase the size of the collection by N_OBJS if necessary */ if (table->nelems+n_objs >= table->size) -- cgit v0.12