aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortradke <tradke@ebee0441-1374-4afa-a3b5-247f3ba15b9a>2000-02-21 14:24:15 +0000
committertradke <tradke@ebee0441-1374-4afa-a3b5-247f3ba15b9a>2000-02-21 14:24:15 +0000
commit5c5bb01905900966cc2aef4c9ba424694a63194b (patch)
tree2b0657ab2c37d7a1d151e690b1f8facc67deb855 /src
parentcbccd2d2565f6e751ce633886f4adad87147ce8c (diff)
Changed return type of CCTK_ParameterWalk().
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOFlexIO/trunk@93 ebee0441-1374-4afa-a3b5-247f3ba15b9a
Diffstat (limited to 'src')
-rw-r--r--src/DumpGH.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DumpGH.c b/src/DumpGH.c
index 5dad2c6..d2949b0 100644
--- a/src/DumpGH.c
+++ b/src/DumpGH.c
@@ -132,7 +132,7 @@ void IOFlexIO_InitialDataDumpGH (cGH *GH)
void IOFlexIO_DumpParams (cGH *GH, IOFile iof)
{
int first;
- const char *param;
+ char *param;
first = 1;
@@ -165,7 +165,7 @@ void IOFlexIO_DumpParams (cGH *GH, IOFile iof)
}
- free ((void *) param);
+ free (param);
} /* end of loop walking over all parameters */
}