diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1999-04-28 23:34:54 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1999-04-28 23:34:54 (GMT) |
commit | e19b78295b1b4f70347b4cd5a6af4e1c1318660e (patch) | |
tree | 7ed4b72d167e2bc2991c571e3e96be40423e3a20 /src/H5Shyper.c | |
parent | 5e37f08253753985eb2dcc79c6a7acb30b2a3329 (diff) | |
download | hdf5-e19b78295b1b4f70347b4cd5a6af4e1c1318660e.zip hdf5-e19b78295b1b4f70347b4cd5a6af4e1c1318660e.tar.gz hdf5-e19b78295b1b4f70347b4cd5a6af4e1c1318660e.tar.bz2 |
[svn-r1233] Removed some debugging printfs.
Diffstat (limited to 'src/H5Shyper.c')
-rw-r--r-- | src/H5Shyper.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/H5Shyper.c b/src/H5Shyper.c index 202d720..fe8fe47 100644 --- a/src/H5Shyper.c +++ b/src/H5Shyper.c @@ -442,7 +442,6 @@ H5S_hyper_block_cache (H5S_hyper_node_t *node, assert(node); assert(fhyper_info); -printf("%s: check 1.0\n",FUNC); /* Allocate temporary buffer of proper size */ if((node->cinfo.block_id=H5TB_get_buf(node->cinfo.size*fhyper_info->elmt_size,1,(void **)&(node->cinfo.block)))<0) HRETURN_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, @@ -518,7 +517,6 @@ H5S_hyper_block_read (H5S_hyper_node_t *node, H5S_hyper_fhyper_info_t *fhyper_in node->cinfo.rleft-=region_size; /* If we've read in all the elements from the block, throw it away */ -printf("%s: rleft=%d, wleft=%d, size=%d\n",FUNC,(int)node->cinfo.rleft,(int)node->cinfo.wleft,(int)node->cinfo.size); if(node->cinfo.rleft==0 && (node->cinfo.wleft==0 || node->cinfo.wleft==node->cinfo.size)) { /* Release the temporary buffer */ H5TB_release_buf(node->cinfo.block_id); |