summaryrefslogtreecommitdiffstats
path: root/testpar/t_dset.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-08-27 13:42:40 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-08-27 13:42:40 (GMT)
commitc6f898c3c7ecdc9f6a5fc73cf189ce3f389ab57f (patch)
tree845923f5f4d6cef98fdfef216529eb00f2a041e8 /testpar/t_dset.c
parentc2869d6a57b3ba2d3d5bac8fd8f3f638263b122e (diff)
downloadhdf5-c6f898c3c7ecdc9f6a5fc73cf189ce3f389ab57f.zip
hdf5-c6f898c3c7ecdc9f6a5fc73cf189ce3f389ab57f.tar.gz
hdf5-c6f898c3c7ecdc9f6a5fc73cf189ce3f389ab57f.tar.bz2
[svn-r5896] Purpose:
Code cleanup Description: Cleaned up some compiler warnings. Platforms tested: FreeBSD 4.6 (sleipnir) w/serial & parallel. Will be testing on IRIX64 6.5 (modi4) in serial & parallel shortly.
Diffstat (limited to 'testpar/t_dset.c')
-rw-r--r--testpar/t_dset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testpar/t_dset.c b/testpar/t_dset.c
index 4c74d8d..056f64e 100644
--- a/testpar/t_dset.c
+++ b/testpar/t_dset.c
@@ -136,7 +136,7 @@ dataset_print(hssize_t start[], hsize_t block[], DATATYPE * dataset)
/* print the column heading */
printf("%-8s", "Cols:");
for (j=0; j < block[1]; j++){
- printf("%3ld ", (long)start[1]+j);
+ printf("%3ld ", (long)(start[1]+j));
}
printf("\n");