diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-04-11 18:23:03 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-04-11 18:23:03 (GMT) |
commit | cb47e4ed03146e6e54523da742cba9c6e99c8fc8 (patch) | |
tree | 23add1063b6afc60f51237fc4fd115f63ebad3ae | |
parent | 1dbee0210fc53e8d553ca6ec9510e020b08698aa (diff) | |
download | hdf5-cb47e4ed03146e6e54523da742cba9c6e99c8fc8.zip hdf5-cb47e4ed03146e6e54523da742cba9c6e99c8fc8.tar.gz hdf5-cb47e4ed03146e6e54523da742cba9c6e99c8fc8.tar.bz2 |
[svn-r2109] Re-wrote a good chunk of the hyperslab code to work correctly in several
situations which weren't tested before. Things should be both faster and
easier to understand in this code now.
-rw-r--r-- | src/H5D.c | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -1738,19 +1738,18 @@ printf("%s: check 2.0, src_type_size=%d, dst_type_size=%d, target_size=%d, min_e #ifdef QAK printf("%s: check 6.0\n",FUNC); - printf("%s: check 6.5\n",FUNC); { int i; - uint16_t *b; + int *b; - if(qak_debug) { + /* if(qak_debug) { */ b=tconv_buf; printf("\ntconv_buf:"); for (i=0; i<smine_nelmts; i++,b++) { - printf("(%d)%u ",i,(unsigned)*b); + printf("(%d)%d ",i,(int)*b); } printf("\n"); - } + /* } */ } #endif |