summaryrefslogtreecommitdiffstats
path: root/tools/h5repack/h5repack.c
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2003-11-10 21:32:01 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2003-11-10 21:32:01 (GMT)
commit54f35626c14dd7f0bcd72bbe03d4e14bb3fc6bfc (patch)
treea09b333d366e93ef1d9546763dd548d10b5022c2 /tools/h5repack/h5repack.c
parentb00b2d31e70f76b0992df896454e16b8a2266d64 (diff)
downloadhdf5-54f35626c14dd7f0bcd72bbe03d4e14bb3fc6bfc.zip
hdf5-54f35626c14dd7f0bcd72bbe03d4e14bb3fc6bfc.tar.gz
hdf5-54f35626c14dd7f0bcd72bbe03d4e14bb3fc6bfc.tar.bz2
[svn-r7834] Purpose:
code clean Description: removed compiler warnings on IRIX Solution: Platforms tested: linux solaris 2.7 IRIX Misc. update:
Diffstat (limited to 'tools/h5repack/h5repack.c')
-rw-r--r--tools/h5repack/h5repack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/h5repack/h5repack.c b/tools/h5repack/h5repack.c
index 91f21dd..2678b20 100644
--- a/tools/h5repack/h5repack.c
+++ b/tools/h5repack/h5repack.c
@@ -248,7 +248,7 @@ void print_options(pack_opt_t *options)
if (options->all_chunk==1) {
printf("\tChunk all with dimension [");
for ( j = 0; j < options->chunk_g.rank; j++)
- printf("%d ", options->chunk_g.chunk_lengths[j]);
+ printf("%d ",(int)options->chunk_g.chunk_lengths[j]);
printf("]\n");
}
}/* verbose */
@@ -262,7 +262,7 @@ void print_options(pack_opt_t *options)
if (options->verbose){
printf("\t<%s> with chunk size ",obj_name);
for ( k = 0; k < options->op_tbl->objs[i].chunk.rank; k++)
- printf("%d ",options->op_tbl->objs[i].chunk.chunk_lengths[k]);
+ printf("%d ",(int)options->op_tbl->objs[i].chunk.chunk_lengths[k]);
printf("\n");
}
has_ck=1;