aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@1c20744c-e24a-42ec-9533-f5004cb800e5>2003-08-07 12:12:28 +0000
committertradke <tradke@1c20744c-e24a-42ec-9533-f5004cb800e5>2003-08-07 12:12:28 +0000
commit5392c26d3877a293bf20e6fae893ee12a02d7aa3 (patch)
treefda5639c1441b08bf8ad4da3294c45677e294885
parent77a3b86574aa1eb4a09e5093939dd1027902d151 (diff)
Fix in converting a non-const cGH pointer into 'const cGH *'.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGHInterp/trunk@72 1c20744c-e24a-42ec-9533-f5004cb800e5
-rw-r--r--src/Startup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Startup.c b/src/Startup.c
index 3cb3226..69be436 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -244,7 +244,7 @@ static int PUGHInterp_InterpGV (cGH *GH,
int local_interp_handle, param_table_handle, coord_system_handle;
char table_string[64];
CCTK_INT *_input_array_indices, *_output_array_types;
- struct
+ union
{
const cGH *const_GH;
cGH *non_const_GH;