aboutsummaryrefslogtreecommitdiff
path: root/src/RecoverGH.c
diff options
context:
space:
mode:
authorallen <allen@ebee0441-1374-4afa-a3b5-247f3ba15b9a>2000-02-03 17:13:45 +0000
committerallen <allen@ebee0441-1374-4afa-a3b5-247f3ba15b9a>2000-02-03 17:13:45 +0000
commit57e602fe53dd2d7e8d093636a7365241dce8103f (patch)
tree5dcb5ca9f4527b4d743a181c8bfeba5c6eb1b25f /src/RecoverGH.c
parentb0e56ec36e997e0d09a0f1ee599888974afeb98f (diff)
Final fixes for wrong function names
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOFlexIO/trunk@87 ebee0441-1374-4afa-a3b5-247f3ba15b9a
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;