diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-07-16 20:48:40 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-07-16 20:48:40 (GMT) |
commit | c97fddc786356a1832e6cb3ac3f28b781d01584d (patch) | |
tree | e9ea99bbf3387f45b18d3b6503597a1c63662cab /test/dtransform.c | |
parent | cb516077680041aecc338936d1aa3f84347e0e0d (diff) | |
download | hdf5-c97fddc786356a1832e6cb3ac3f28b781d01584d.zip hdf5-c97fddc786356a1832e6cb3ac3f28b781d01584d.tar.gz hdf5-c97fddc786356a1832e6cb3ac3f28b781d01584d.tar.bz2 |
[svn-r8892] Purpose:
Code cleanup
Description:
Clean up a bunch of warnings and bring new code better inline with current
library coding practice.
Platforms tested:
FreeBSD 4.10 (sleipnir) w/parallel
Too minor to require h5committest
Misc. update:
Diffstat (limited to 'test/dtransform.c')
-rw-r--r-- | test/dtransform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dtransform.c b/test/dtransform.c index 9d1665b..c12530a 100644 --- a/test/dtransform.c +++ b/test/dtransform.c @@ -6,7 +6,7 @@ int compare_int(int* a, int* b, int tol); int compare_float(float* a, float* b, float tol); -int main() +int main(void) { hid_t file_id, dxpl_id_f_to_c, dxpl_id_c_to_f, dxpl_id_simple, dset_id_int, dset_id_float, datatype, dataspace; hsize_t dim[2] = {ROWS, COLS}; |