diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2006-03-17 20:47:21 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2006-03-17 20:47:21 (GMT) |
commit | e2a8d4e04433220abc398e8a91511dc8733731d6 (patch) | |
tree | 4d1db86306a2c5b595e6347af0e387a818321987 | |
parent | b6e8651a3a98e2af1f8deb70dd73c1265065a588 (diff) | |
download | hdf5-e2a8d4e04433220abc398e8a91511dc8733731d6.zip hdf5-e2a8d4e04433220abc398e8a91511dc8733731d6.tar.gz hdf5-e2a8d4e04433220abc398e8a91511dc8733731d6.tar.bz2 |
[svn-r12116] Purpose: Bug fix.
Description: Two semicolons were missing in the code change for VAX support.
Solution: Fixed.
Platforms tested: fuss - too simple.
Misc. update:
-rw-r--r-- | test/dt_arith.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dt_arith.c b/test/dt_arith.c index c90c524..d7e1704 100644 --- a/test/dt_arith.c +++ b/test/dt_arith.c @@ -3266,7 +3266,7 @@ test_conv_flt_1 (const char *name, int run_test, hid_t src, hid_t dst) tmp[k] = saved[j*src_size+(src_size-2)-k]; tmp[k+1] = saved[j*src_size+(src_size-1)-k]; - tmp[(src_size-2)-k] = saved[j*src_size+k] + tmp[(src_size-2)-k] = saved[j*src_size+k]; tmp[(src_size-1)-k] = saved[j*src_size+k+1]; } } @@ -3286,7 +3286,7 @@ test_conv_flt_1 (const char *name, int run_test, hid_t src, hid_t dst) tmp[k] = buf[j*dst_size+(dst_size-2)-k]; tmp[k+1] = buf[j*dst_size+(dst_size-1)-k]; - tmp[(dst_size-2)-k] = buf[j*dst_size+k] + tmp[(dst_size-2)-k] = buf[j*dst_size+k]; tmp[(dst_size-1)-k] = buf[j*dst_size+k+1]; } } |