summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-04-11 18:23:03 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-04-11 18:23:03 (GMT)
commitcb47e4ed03146e6e54523da742cba9c6e99c8fc8 (patch)
tree23add1063b6afc60f51237fc4fd115f63ebad3ae
parent1dbee0210fc53e8d553ca6ec9510e020b08698aa (diff)
downloadhdf5-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.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/H5D.c b/src/H5D.c
index e1f318b..8951db8 100644
--- a/src/H5D.c
+++ b/src/H5D.c
@@ -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