aboutsummaryrefslogtreecommitdiff
path: root/src/DumpGH.c
diff options
context:
space:
mode:
authorallen <allen@ebee0441-1374-4afa-a3b5-247f3ba15b9a>2000-02-03 16:21:29 +0000
committerallen <allen@ebee0441-1374-4afa-a3b5-247f3ba15b9a>2000-02-03 16:21:29 +0000
commitb0e56ec36e997e0d09a0f1ee599888974afeb98f (patch)
tree4ca44263af694475eb55666ee88c59e5b1d742e2 /src/DumpGH.c
parent99ce7841daad59ef4ddc25f295743125001857d6 (diff)
Fixed prototype problem identified by the washu indies, and fixed a couple
of function name changes I'd missed earlier Cactus/215 git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOFlexIO/trunk@86 ebee0441-1374-4afa-a3b5-247f3ba15b9a
Diffstat (limited to 'src/DumpGH.c')
-rw-r--r--src/DumpGH.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DumpGH.c b/src/DumpGH.c
index faa9b1f..849d0a6 100644
--- a/src/DumpGH.c
+++ b/src/DumpGH.c
@@ -381,7 +381,7 @@ void IOFlexIO_DumpGH (cGH *GH, int called_from)
/* stop total checkpoint timer and print timing info */
if (print_timing_info) {
- t_TimerInfo *info;
+ cTimerData *info;
CCTK_TimerStopI (myGH->checkpointTotalTimer);
@@ -389,10 +389,10 @@ void IOFlexIO_DumpGH (cGH *GH, int called_from)
/*** FIXME: select timer to get info from at runtime ***/
#ifdef HAVE_TIME_GETTIMEOFDAY
- info = CCTK_TimerCreateInfo ();
+ info = CCTK_TimerCreateData();
if (info) {
- if (myGH->dumpParamsTimer >= 0) {
+ if (myGH->dumpParamsTimer>= 0) {
CCTK_TimerGetI (myGH->dumpParamsTimer, info);
printf (" Time to dump parameters: %5.1f sec\n", info->vals[0].val.d);
}