diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2018-03-09 15:18:06 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2018-03-09 15:18:06 (GMT) |
commit | 53235aa24c7663a4ec0dd87bf75ae42a86caa79f (patch) | |
tree | 9017c70c413a6b5df68704ff85ff3697dc919cfd | |
parent | 00d29181b51deba64a8a716309e828a0bd53aaa7 (diff) | |
parent | 7c293908a772dd19d69872b4dbf1fdcbbbf5f94f (diff) | |
download | hdf5-53235aa24c7663a4ec0dd87bf75ae42a86caa79f.zip hdf5-53235aa24c7663a4ec0dd87bf75ae42a86caa79f.tar.gz hdf5-53235aa24c7663a4ec0dd87bf75ae42a86caa79f.tar.bz2 |
Merge pull request #930 in HDFFV/hdf5 from ~BMRIBLER/hdf5_bmr:develop to develop
* commit '7c293908a772dd19d69872b4dbf1fdcbbbf5f94f':
Improving tests Description: Fixed typos that caused daily test failure on Ostrich Platforms tested: Linux/64 (jelly) Linux/ppc64 (ostrich)
-rw-r--r-- | test/dtypes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dtypes.c b/test/dtypes.c index 426f3b9..1a27634 100644 --- a/test/dtypes.c +++ b/test/dtypes.c @@ -7684,7 +7684,7 @@ test_versionbounds(void) if (ret < 0) TEST_ERROR /* Create a enumerate datatype */ - enum_type = H5Tcreate(H5T_ENUM, sizeof(short)); + enum_type = H5Tcreate(H5T_ENUM, sizeof(color_t)); if (enum_type < 0) TEST_ERROR enum_val = E1_RED; |