diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2005-02-05 18:27:04 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2005-02-05 18:27:04 (GMT) |
commit | c0bbeb909802f33bac72cd3fabaa4311d97d38a9 (patch) | |
tree | 51d7eec1eff1021dc3ebc0062c6e70ed9ce7dda0 /tools/testfiles/tcomp-4.ddl | |
parent | 7df531486c17d79b196d39fd75cc44f30207c531 (diff) | |
download | hdf5-c0bbeb909802f33bac72cd3fabaa4311d97d38a9.zip hdf5-c0bbeb909802f33bac72cd3fabaa4311d97d38a9.tar.gz hdf5-c0bbeb909802f33bac72cd3fabaa4311d97d38a9.tar.bz2 |
[svn-r9942] Purpose: Minor Bug fix
Description: H5T_NATIVE_SCHAR, H5T_NATIVE_UCHAR were always considered as little
endian due to the algorithm to detect their order in H5detect.c. This error
didn't affect data but didn't look right.
Solution: In H5detect.c, use native int instead to detect order if type size
is only 1 byte.
Platforms tested: h5committest, fuss and arabica
Diffstat (limited to 'tools/testfiles/tcomp-4.ddl')
-rw-r--r-- | tools/testfiles/tcomp-4.ddl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testfiles/tcomp-4.ddl b/tools/testfiles/tcomp-4.ddl index 32212f0..967b4a6 100644 --- a/tools/testfiles/tcomp-4.ddl +++ b/tools/testfiles/tcomp-4.ddl @@ -21,7 +21,7 @@ GROUP "/" { H5T_ARRAY { [5][6] H5T_STD_I16BE } "d_name"; H5T_IEEE_F32BE "e_name"; H5T_ARRAY { [10] H5T_IEEE_F64BE } "f_name"; - H5T_STD_I8LE "g_name"; + H5T_STD_I8BE "g_name"; } DATASPACE SIMPLE { ( 6 ) / ( 6 ) } DATA { |