diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-09-30 21:46:56 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-09-30 21:46:56 (GMT) |
commit | 41c595e2693a2a434bfcaf45e8fcf76f8e0e456c (patch) | |
tree | 6c155ced45975ad8c1d2817c49f5298758884f90 /src/H5Sprivate.h | |
parent | 3888942e3a5e88529d3586851feb94b8b6007ff3 (diff) | |
download | hdf5-41c595e2693a2a434bfcaf45e8fcf76f8e0e456c.zip hdf5-41c595e2693a2a434bfcaf45e8fcf76f8e0e456c.tar.gz hdf5-41c595e2693a2a434bfcaf45e8fcf76f8e0e456c.tar.bz2 |
[svn-r11485] Purpose:
Code cleanup
Description:
Clean up & optimize (a little) the recent "hyperslab rebuilding" code
w/Kent.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'src/H5Sprivate.h')
-rw-r--r-- | src/H5Sprivate.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Sprivate.h b/src/H5Sprivate.h index fe982b6..a902918 100644 --- a/src/H5Sprivate.h +++ b/src/H5Sprivate.h @@ -49,9 +49,9 @@ typedef struct H5S_hyper_span_info_t H5S_hyper_span_info_t; /* Information about one dimension in a hyperslab selection */ typedef struct H5S_hyper_dim_t { hsize_t start; - hsize_t stride; - hsize_t count; - hsize_t block; + hsize_t stride; + hsize_t count; + hsize_t block; } H5S_hyper_dim_t; /* Point selection iteration container */ |