summaryrefslogtreecommitdiffstats
path: root/src/H5VM.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2015-02-17 20:11:39 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2015-02-17 20:11:39 (GMT)
commit85504f53761f96a5903ee176bed25cb3c50d6c54 (patch)
tree1a17e5252623b17d0af38b616859e0370751f6f7 /src/H5VM.c
parent595b01658e965b977dd980421cd1bfee27f74dfc (diff)
downloadhdf5-85504f53761f96a5903ee176bed25cb3c50d6c54.zip
hdf5-85504f53761f96a5903ee176bed25cb3c50d6c54.tar.gz
hdf5-85504f53761f96a5903ee176bed25cb3c50d6c54.tar.bz2
[svn-r26195] Description:
Switch from enum H5D_CHUNK_BTREE to H5D_CHUNK_IDX_BTREE, along with a couple of minor whitespace touchups. Tested on: Mac OSX/64 10.10.2 (amazon) w/serial & parallel Linux/32 2.6.x (jam) w/serial
Diffstat (limited to 'src/H5VM.c')
-rw-r--r--src/H5VM.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5VM.c b/src/H5VM.c
index 6f72c57..a1eafb6 100644
--- a/src/H5VM.c
+++ b/src/H5VM.c
@@ -1089,7 +1089,7 @@ H5VM_array_offset_pre(unsigned n, const hsize_t *acc, const hsize_t *offset)
HDassert(offset);
/* Compute offset in array */
- for (i=(int)(n-1), ret_value=0; i>=0; --i)
+ for(i = (int)(n - 1), ret_value = 0; i >= 0; --i)
ret_value += acc[i] * offset[i];
FUNC_LEAVE_NOAPI(ret_value)