aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorknarf <knarf@c3c03602-0f4f-0410-b3fa-d2c81c8a7dc5>2005-12-02 10:39:44 +0000
committerknarf <knarf@c3c03602-0f4f-0410-b3fa-d2c81c8a7dc5>2005-12-02 10:39:44 +0000
commitff4a81e7479ef7b49d4f9f73b72d99eabb3bbea5 (patch)
tree9ad565ff484b84b5e9548b46eb304f7177635bbd
parenteccd90553f1c7eb81ed4733c03ca6a9da81d2618 (diff)
make variable type change explicit
git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/RotatingSymmetry90/trunk@31 c3c03602-0f4f-0410-b3fa-d2c81c8a7dc5
-rw-r--r--src/interpolate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interpolate.c b/src/interpolate.c
index 844aaf6..be75f3e 100644
--- a/src/interpolate.c
+++ b/src/interpolate.c
@@ -407,7 +407,7 @@ Rot90_SymmetryInterpolate (CCTK_POINTER_TO_CONST const cctkGH_,
/* Copy coordinates */
for (d=0; d<3; ++d) {
- new_interp_coords[d] = malloc (N_interp_points * sizeof(CCTK_REAL));
+ new_interp_coords[d] = (CCTK_REAL*)malloc (N_interp_points * sizeof(CCTK_REAL));
assert (new_interp_coords[d]);
}