summaryrefslogtreecommitdiffstats
path: root/src/H5Odtype.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2001-06-19 17:35:45 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2001-06-19 17:35:45 (GMT)
commit7c8d70200303e03fea24a61707658392eb450911 (patch)
tree5f2ebc064cc2af00a409074e8600ec7f5937c398 /src/H5Odtype.c
parentfbc0f37dc5c5fd86e825dc436b56fda23a2e7ea7 (diff)
downloadhdf5-7c8d70200303e03fea24a61707658392eb450911.zip
hdf5-7c8d70200303e03fea24a61707658392eb450911.tar.gz
hdf5-7c8d70200303e03fea24a61707658392eb450911.tar.bz2
[svn-r4018] Purpose:
Code cleanup Description: Removed some more warnings during compilation on SGI machines.. Platforms tested: Irix64-6.5 (modi4)
Diffstat (limited to 'src/H5Odtype.c')
-rw-r--r--src/H5Odtype.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Odtype.c b/src/H5Odtype.c
index 58b68a2..8e43762 100644
--- a/src/H5Odtype.c
+++ b/src/H5Odtype.c
@@ -1288,7 +1288,7 @@ H5O_dtype_debug(H5F_t *f, const void *mesg, FILE *stream,
dt->u.array.ndims);
fprintf(stream, "%*s%-*s {", indent, "", fwidth, "Dim Size:");
for (i=0; i<dt->u.array.ndims; i++) {
- fprintf (stream, "%s%u", i?", ":"", dt->u.array.dim[i]);
+ fprintf (stream, "%s%u", i?", ":"", (unsigned)dt->u.array.dim[i]);
}
fprintf (stream, "}\n");
fprintf(stream, "%*s%-*s {", indent, "", fwidth, "Dim Permutation:");