aboutsummaryrefslogtreecommitdiff
path: root/src/RecoverGH.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/RecoverGH.c')
-rw-r--r--src/RecoverGH.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/RecoverGH.c b/src/RecoverGH.c
index cf33d83..17e8c1a 100644
--- a/src/RecoverGH.c
+++ b/src/RecoverGH.c
@@ -390,17 +390,17 @@ int IOFlexIO_RecoverGH (cGH *GH, const char *basename, int called_from)
if (info) {
if (myGH->recoverVarsTimer >= 0) {
- CCTK_TimerGetI (myGH->recoverVarsTimer, info);
+ CCTK_TimerI (myGH->recoverVarsTimer, info);
printf ("Time to recover datasets: %5.1f sec\n", info->vals[0].val.d);
}
if (myGH->recoverParamsTimer >= 0) {
- CCTK_TimerGetI (myGH->recoverParamsTimer, info);
+ CCTK_TimerI (myGH->recoverParamsTimer, info);
printf ("Time to recover parameters: %5.1f sec\n", info->vals[0].val.d);
}
if (myGH->recoverTotalTimer >= 0) {
- CCTK_TimerGetI (myGH->recoverTotalTimer, info);
+ CCTK_TimerI (myGH->recoverTotalTimer, info);
printf ("Total time to recover: %5.1f sec\n", info->vals[0].val.d);
}
@@ -432,7 +432,7 @@ static int IOFlexIO_restoreParams (IOFile ifp)
char *prefix, *param;
/* get the name of the next attribute */
- IOreadIndexedAttributeData (ifp, i, aname, &atype, &asize,MAX_ATTRNAME_LEN);
+ IOreadIndexedAttributeInfo (ifp, i, aname, &atype, &asize,MAX_ATTRNAME_LEN);
/* sort out only those attributes which hold a parameter value */
prefix = param = NULL;