summaryrefslogtreecommitdiffstats
path: root/tools/h5repack/h5repack.h
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2016-09-28 13:20:48 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2016-09-28 13:20:48 (GMT)
commitc427b2280696238dc542efdc2db7405542b1032c (patch)
treead9044ef995a2e46b8f54e1fdbd7e47fd0195e87 /tools/h5repack/h5repack.h
parentd8e0019b3ecd7707c4e586db88469f7878176d29 (diff)
downloadhdf5-c427b2280696238dc542efdc2db7405542b1032c.zip
hdf5-c427b2280696238dc542efdc2db7405542b1032c.tar.gz
hdf5-c427b2280696238dc542efdc2db7405542b1032c.tar.bz2
Fix function declaration
Diffstat (limited to 'tools/h5repack/h5repack.h')
-rw-r--r--tools/h5repack/h5repack.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/tools/h5repack/h5repack.h b/tools/h5repack/h5repack.h
index 250121e..6bed05e 100644
--- a/tools/h5repack/h5repack.h
+++ b/tools/h5repack/h5repack.h
@@ -82,9 +82,9 @@ typedef struct {
/* store a table of all objects */
typedef struct {
- unsigned int size;
- unsigned int nelems;
- pack_info_t *objs;
+ unsigned int size;
+ unsigned int nelems;
+ pack_info_t *objs;
} pack_opttbl_t;
@@ -207,11 +207,11 @@ int apply_filters(const char* name, /* object name from traverse list */
int options_table_init( pack_opttbl_t **tbl );
int options_table_free( pack_opttbl_t *table );
int options_add_layout( obj_list_t *obj_list,
- int n_objs,
+ unsigned n_objs,
pack_info_t *pack,
pack_opttbl_t *table );
int options_add_filter ( obj_list_t *obj_list,
- int n_objs,
+ unsigned n_objs,
filter_info_t filt,
pack_opttbl_t *table );
pack_info_t* options_get_object( const char *path,
@@ -223,13 +223,13 @@ pack_info_t* options_get_object( const char *path,
*/
obj_list_t* parse_filter(const char *str,
- int *n_objs,
+ unsigned *n_objs,
filter_info_t *filt,
pack_opt_t *options,
int *is_glb);
obj_list_t* parse_layout(const char *str,
- int *n_objs,
+ unsigned *n_objs,
pack_info_t *pack, /* info about object */
pack_opt_t *options);