diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1997-10-15 18:38:24 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1997-10-15 18:38:24 (GMT) |
commit | 67e4d2b5f7ce5652b59be20dcbbe90e1840b0832 (patch) | |
tree | b47fde7f56dd28d349315009279f3a7438f7c365 /src/H5D.c | |
parent | 20554bcc96cdcb7100ec435ef33116fb1e3f642e (diff) | |
download | hdf5-67e4d2b5f7ce5652b59be20dcbbe90e1840b0832.zip hdf5-67e4d2b5f7ce5652b59be20dcbbe90e1840b0832.tar.gz hdf5-67e4d2b5f7ce5652b59be20dcbbe90e1840b0832.tar.bz2 |
[svn-r120] Removed debugging printf's
Diffstat (limited to 'src/H5D.c')
-rw-r--r-- | src/H5D.c | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -206,7 +206,6 @@ hid_t H5D_find_name(hid_t grp_id, hobjtype_t obj_type, const char *name) /* Clear errors and check args and all the boring stuff. */ H5ECLEAR; -printf("%s: check 1.0\n",FUNC); /* Convert atom arguments to pointers */ if(H5Aatom_group(grp_id)!=H5_FILE) HGOTO_ERROR(H5E_ATOM, H5E_BADTYPE, FAIL); @@ -220,25 +219,20 @@ printf("%s: check 1.0\n",FUNC); dset->file = file; dset->dirty = FALSE; -printf("%s: check 2.0, name=%s\n",FUNC,name); /* Open the dataset object */ if (NULL==(dset->ent=H5G_open (file, name))) { HGOTO_ERROR (H5E_DATASET, H5E_NOTFOUND, FAIL); } -printf("%s: check 2.5\n",FUNC); /* Get the dataset's type (currently only atomic types) */ if((type=HDcalloc(1,sizeof(h5_datatype_t)))==NULL) HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL); -printf("%s: check 2.6\n",FUNC); if (NULL==H5O_read (dset->file, NO_ADDR, dset->ent, H5O_SIM_DTYPE, 0, type)) HGOTO_ERROR(H5E_OHDR, H5E_NOTFOUND, FAIL); -printf("%s: check 2.7\n",FUNC); if((dset->tid=H5Aregister_atom(H5_DATATYPE, (const VOIDP)type))==FAIL) HGOTO_ERROR(H5E_ATOM, H5E_CANTREGISTER, FAIL); -printf("%s: check 3.0\n",FUNC); /* Get the dataset's dimensionality (currently only simple dataspaces) */ if((dim=HDcalloc(1,sizeof(H5P_dim_t)))==NULL) HGOTO_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL); @@ -255,7 +249,6 @@ printf("%s: check 3.0\n",FUNC); HGOTO_ERROR(H5E_OHDR, H5E_NOTFOUND, FAIL); dset->data_addr=store.off; -printf("%s: check 4.0\n",FUNC); /* Register the new OID and get an ID for it */ if((ret_value=H5Aregister_atom(H5_DATASET, (const VOIDP)dset))==FAIL) HGOTO_ERROR(H5E_ATOM, H5E_CANTREGISTER, FAIL); |