diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-07-24 18:39:01 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-07-24 18:39:01 (GMT) |
commit | c968525b29ce8cee8e842f6a7a1bbd78acc6b63f (patch) | |
tree | a25e95084d91b1cf32123d74cd08fba4433618ab /test | |
parent | 9b565b18e6ef0c349d5649074a6afb3169f15ad7 (diff) | |
download | hdf5-c968525b29ce8cee8e842f6a7a1bbd78acc6b63f.zip hdf5-c968525b29ce8cee8e842f6a7a1bbd78acc6b63f.tar.gz hdf5-c968525b29ce8cee8e842f6a7a1bbd78acc6b63f.tar.bz2 |
[svn-r5833] Purpose:
Code cleanup
Description:
Add a bit more debugging information to one failure mode.
Platforms tested:
FreeBSD 4.6 (sleipnir)
Diffstat (limited to 'test')
-rw-r--r-- | test/tselect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tselect.c b/test/tselect.c index c4587cf..1b5ab49 100644 --- a/test/tselect.c +++ b/test/tselect.c @@ -1801,7 +1801,7 @@ test_select_hyper_offset(void) tbuf2=rbuf+(i*SPACE3_DIM2); for(j=0; j<SPACE3_DIM2; j++, tbuf++, tbuf2++) { if(*tbuf!=*tbuf2) { - printf("%d: hyperslab values don't match!, i=%d, j=%d\n",__LINE__,i,j); + printf("%d: hyperslab values don't match!, i=%d, j=%d, *tbuf=%u, *tbuf2=%u\n",__LINE__,i,j,(unsigned)*tbuf,(unsigned)*tbuf2); num_errs++; } /* end if */ } /* end for */ |