diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1998-07-15 00:47:18 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1998-07-15 00:47:18 (GMT) |
commit | e350a69a55f2101d7e31dc8b3565da50ef452643 (patch) | |
tree | 0b4f2b4b10be3ae4fc73999df45bd980e2cc5635 /src/H5D.c | |
parent | e0c9ca3cce62a7cfe072c52cd5d98c334d46b9ff (diff) | |
download | hdf5-e350a69a55f2101d7e31dc8b3565da50ef452643.zip hdf5-e350a69a55f2101d7e31dc8b3565da50ef452643.tar.gz hdf5-e350a69a55f2101d7e31dc8b3565da50ef452643.tar.bz2 |
[svn-r493] Fixed a bug when iterating through hyperslabs with greater than 2 dimensions.
Diffstat (limited to 'src/H5D.c')
-rw-r--r-- | src/H5D.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1443,15 +1443,18 @@ printf("%s: check 5.0, nelmts=%d, smine_start=%d, smine_nelmts=%d\n",FUNC,(int)n } #ifdef QAK printf("%s: check 6.0\n",FUNC); +#endif /* QAK */ +#ifdef QAK +printf("%s: check 6.5\n",FUNC); { int i; - int *b; + uint8 *b; if(qak_debug) { b=tconv_buf; printf("\ntconv_buf:"); for (i=0; i<smine_nelmts; i++,b++) { - printf("(%d)%d ",i,*b); + printf("(%d)%u ",i,(unsigned)*b); } printf("\n"); } |