summaryrefslogtreecommitdiffstats
path: root/test/dtypes.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2020-08-15 03:32:50 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2020-08-15 03:32:50 (GMT)
commit13cb4e16d233e2dde908113f29e15e434dbc1e99 (patch)
treec17b80e883c814c34c569f677bf7ee632b981caa /test/dtypes.c
parent71bf801ca22311a60604d6632c31b16294c01989 (diff)
downloadhdf5-13cb4e16d233e2dde908113f29e15e434dbc1e99.zip
hdf5-13cb4e16d233e2dde908113f29e15e434dbc1e99.tar.gz
hdf5-13cb4e16d233e2dde908113f29e15e434dbc1e99.tar.bz2
Even more normalization with develop
Diffstat (limited to 'test/dtypes.c')
-rw-r--r--test/dtypes.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/dtypes.c b/test/dtypes.c
index c89688c..f0c4714 100644
--- a/test/dtypes.c
+++ b/test/dtypes.c
@@ -12,7 +12,7 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
- * Programmer: Robb Matzke <matzke@llnl.gov>
+ * Programmer: Robb Matzke
* Tuesday, December 9, 1997
*
* Purpose: Tests the datatype interface (H5T)
@@ -7642,19 +7642,19 @@ test_versionbounds(void)
ret = H5Tenum_insert(enum_type, "RED", &enum_val);
if (ret < 0) TEST_ERROR
- enum_val++;
+ enum_val = E1_GREEN;
ret = H5Tenum_insert(enum_type, "GREEN", &enum_val);
if (ret < 0) TEST_ERROR
- enum_val++;
+ enum_val = E1_BLUE;
ret = H5Tenum_insert(enum_type, "BLUE", &enum_val);
if (ret < 0) TEST_ERROR
- enum_val++;
+ enum_val = E1_ORANGE;
ret = H5Tenum_insert(enum_type, "ORANGE", &enum_val);
if (ret < 0) TEST_ERROR
- enum_val++;
+ enum_val = E1_YELLOW;
ret = H5Tenum_insert(enum_type, "YELLOW", &enum_val);
if (ret < 0) TEST_ERROR