summaryrefslogtreecommitdiffstats
path: root/examples/h5_read.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1999-11-17 21:58:38 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1999-11-17 21:58:38 (GMT)
commitcd313a16456934b336902ca509d10187b4d975de (patch)
tree5d7a409bdcf7fb33a12f3314a41eff6002f39019 /examples/h5_read.c
parentef4c6e6bc8a7ec92ef2db5d83633b6abc86657d6 (diff)
downloadhdf5-cd313a16456934b336902ca509d10187b4d975de.zip
hdf5-cd313a16456934b336902ca509d10187b4d975de.tar.gz
hdf5-cd313a16456934b336902ca509d10187b4d975de.tar.bz2
[svn-r1835] Cleaned up a few warnings.
Diffstat (limited to 'examples/h5_read.c')
-rw-r--r--examples/h5_read.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/h5_read.c b/examples/h5_read.c
index 31cb882..82f71a6 100644
--- a/examples/h5_read.c
+++ b/examples/h5_read.c
@@ -65,7 +65,7 @@ main (void)
if (order == H5T_ORDER_LE) printf("Little endian order \n");
size = H5Tget_size(datatype);
- printf(" Data size is %d \n", size);
+ printf(" Data size is %d \n", (int)size);
dataspace = H5Dget_space(dataset); /* dataspace handle */
rank = H5Sget_simple_extent_ndims(dataspace);