From 67e4d2b5f7ce5652b59be20dcbbe90e1840b0832 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Wed, 15 Oct 1997 13:38:24 -0500 Subject: [svn-r120] Removed debugging printf's --- src/H5D.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/H5D.c b/src/H5D.c index ea9d811..90062e6 100644 --- a/src/H5D.c +++ b/src/H5D.c @@ -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); -- cgit v0.12