diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1999-11-17 21:58:38 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1999-11-17 21:58:38 (GMT) |
commit | cd313a16456934b336902ca509d10187b4d975de (patch) | |
tree | 5d7a409bdcf7fb33a12f3314a41eff6002f39019 /examples/h5_read.c | |
parent | ef4c6e6bc8a7ec92ef2db5d83633b6abc86657d6 (diff) | |
download | hdf5-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.c | 2 |
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); |