diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-04-18 14:05:38 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-04-18 14:05:38 (GMT) |
commit | ef9c40754bdf5b5be1bb92e632da5e17a8d6913c (patch) | |
tree | d7066aba588261134019b8e02f381bf4f84d38ca /test/set_extent.c | |
parent | 139af5a5177697500b022482dddbf218a420d417 (diff) | |
download | hdf5-ef9c40754bdf5b5be1bb92e632da5e17a8d6913c.zip hdf5-ef9c40754bdf5b5be1bb92e632da5e17a8d6913c.tar.gz hdf5-ef9c40754bdf5b5be1bb92e632da5e17a8d6913c.tar.bz2 |
[svn-r5200] Purpose:
Code Cleanup
Description:
Clean up compiler warnings from the last bunch of checkins
Platforms tested:
FreeBSD 4.5 (sleipnir)
Diffstat (limited to 'test/set_extent.c')
-rw-r--r-- | test/set_extent.c | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/test/set_extent.c b/test/set_extent.c index 6178472..bae973f 100644 --- a/test/set_extent.c +++ b/test/set_extent.c @@ -1,3 +1,13 @@ +/* + * Copyright (C) 2002 NCSA + * All rights reserved. + * + * Programmer: Pedro Vicente <pvn@ncsa.uiuc.edu> + * April 12, 2002 + * + * Purpose: Tests the H5Dset_extent call + */ + #include "hdf5.h" #include "h5test.h" @@ -100,9 +110,9 @@ int main( void ) /* Compare the read array with the original array */ - for( i = 0; i < dims_out[0]; i++ ) + for( i = 0; i < (int)dims_out[0]; i++ ) { - for( j = 0; j < dims_out[1]; j++ ) + for( j = 0; j < (int)dims_out[1]; j++ ) { if ( buf1[i][j] != data[i][j] ) { goto out; @@ -138,9 +148,9 @@ int main( void ) if (H5Dread( dataset_id, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, buf2 )<0) goto out; /* Compare the read array with the original array */ - for( i = 0; i < dims_out[0]; i++ ) + for( i = 0; i < (int)dims_out[0]; i++ ) { - for( j = 0; j < dims_out[1]; j++ ) + for( j = 0; j < (int)dims_out[1]; j++ ) { if ( i >= 70 || j >= 70 ) { @@ -229,9 +239,9 @@ int main( void ) if (H5Dread( dataset_id, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, buf1 )<0) goto out; /* Compare the read array with the original array */ - for( i = 0; i < dims_out[0]; i++ ) + for( i = 0; i < (int)dims_out[0]; i++ ) { - for( j = 0; j < dims_out[1]; j++ ) + for( j = 0; j < (int)dims_out[1]; j++ ) { if ( buf1[i][j] != data[i][j] ) { goto out; @@ -260,9 +270,9 @@ int main( void ) if (H5Dread( dataset_id, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, buf2 )<0) goto out; /* Compare the read array with the original array */ - for( i = 0; i < dims_out[0]; i++ ) + for( i = 0; i < (int)dims_out[0]; i++ ) { - for( j = 0; j < dims_out[1]; j++ ) + for( j = 0; j < (int)dims_out[1]; j++ ) { if ( i >= 70 || j >= 70 ) { |