summaryrefslogtreecommitdiffstats
path: root/src/H5D.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1998-07-15 00:47:18 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1998-07-15 00:47:18 (GMT)
commite350a69a55f2101d7e31dc8b3565da50ef452643 (patch)
tree0b4f2b4b10be3ae4fc73999df45bd980e2cc5635 /src/H5D.c
parente0c9ca3cce62a7cfe072c52cd5d98c334d46b9ff (diff)
downloadhdf5-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.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/H5D.c b/src/H5D.c
index ba067ae..eea820c 100644
--- a/src/H5D.c
+++ b/src/H5D.c
@@ -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");
}